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?
Have you tried just wrapping the Stream returned by
Application.GetResourceStreamin aStreamReaderto 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.