查看浏览器中加载的xaml
有没有办法查看加载到浏览器中的 XAML 树?
我们正在使用一个专有组件,该组件动态加载 xaml (Application.GetResourceStream
),并且它加载的内容似乎存在问题。如何查看已加载的 xaml?
Is there any way to view XAML tree loaded into a browser?
We are using one proprietary component, that loads xaml dynamically (Application.GetResourceStream
), and there seems to be a problem with what it loads. How do I get a glimpse of xaml loaded?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否尝试过将
Application.GetResourceStream
返回的 Stream 包装在StreamReader
中来检查 XAML?除此之外,Silverlight Spy 是一个在运行时检查 UI 的出色工具 - 它可以让您导航完整的可视化树甚至会在应用程序内用红色矩形突出显示您选择的内容。
Have you tried just wrapping the Stream returned by
Application.GetResourceStream
in aStreamReader
to inspect the XAML?Beyond that, Silverlight Spy is a great tool for inspecting the UI at runtime -- it lets you navigate the full visual tree and will even highlight what you've selected with a red rectangle inside the app.