查看浏览器中加载的xaml

发布于 2024-12-10 20:15:11 字数 139 浏览 0 评论 0原文

有没有办法查看加载到浏览器中的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

半夏半凉 2024-12-17 20:15:11

您是否尝试过将 Application.GetResourceStream 返回的 Stream 包装在 StreamReader 中来检查 XAML?

除此之外,Silverlight Spy 是一个在运行时检查 UI 的出色工具 - 它可以让您导航完整的可视化树甚至会在应用程序内用红色矩形突出显示您选择的内容。

Have you tried just wrapping the Stream returned by Application.GetResourceStream in a StreamReader 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文