提取正在运行的 WPF 应用程序的 WPF 内容模板
有没有办法提取托管在正在运行的 WPF 应用程序中的 WPF 控件的内容模板?
就像我能够使用 Snoop 等工具挖掘任何 WPF 应用程序的可视化树一样,我希望能够提取内容模板。
我已经问过谷歌了。但要么我的关键字完全错误,要么可能没有解决方案(我对此表示怀疑)。
有人可以给我提示吗?
谢谢
is there a way of extracting a content template of a WPF control which is hosted in a running WPF application?
Just the same way as I am able to dig through the visual tree of any WPF application with tools like Snoop I'd like to be able to extract the Content Template.
I have asked Google already. But either my keywords were totally wrong or there might be no solution (what I doubt).
Could please someone give me a hint?
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您对这个小扩展方法有何看法?
What do yo think about that small extension method?
模板在 Xaml 中定义,最终成为二进制 Xaml (Baml),这将使反编译 Xaml 格式的模板变得更加困难(如果不是不可能的话)。
The Template is defined in Xaml, which ends up as Binary Xaml (Baml), which is going to make it much harder, if not impossible, to get the Template in Xaml format decompiled.
该工具允许您查看正在运行的 WPF 树。只要您没有同时使用 VS 调试应用程序即可。
http://snoopwpf.codeplex.com/
This tool allows you to view the running WPF tree. So long as you aren't debugging the application with VS at the same time.
http://snoopwpf.codeplex.com/