Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm looking for a way to inspect running XAML in a Windows 8 store app. Essentially, I want firebug / chrome inspector style functionality where I can look at the XAML source generated at runtime, to debug simple layout and style issues.

I've tried Snoop, Pistachio and WPF Inspector but none work for Windows Store apps. The only one I can find which seems to work for Store apps is XAML Spy, which is €90. I can't justify that cost.

Is there any other way to inspect running XAML?

share|improve this question
2  
XAML Spy is the only one I have found – BStateham Dec 12 '12 at 5:43

2 Answers

up vote 3 down vote accepted

The VisualTreeDebugger class from WinRT XAML Toolkit is what you could use if you want a free tool. It doesn't do as much as XAML Spy, but you get what you pay for. I thought of adding more features to it like actual visualization of what you debug, but the work required would not justify the time investment + I didn't want to step on Koen Zwikstra's turf. I am sure he is doing a great job on that tool. Anyways - VisualTreeDebugger is enough for me, so maybe it would also be enough for you.

The way you can use it is add the class to your code, add a reference in your XAML like

xmlns:debug="WinRTXamlToolkit.Debugging"

then put a hook on a control where you would like to start debugging, like

debug:VisualTreeDebugger.BreakOnLoaded="True"

which will dump the core visual tree details as text in your debugger output window (Ctrl+W,O) and break in the code that dumped your tree where you can investigate the "path" variable, which contains the list of all visual tree elements from the debugged control to the root, so you can watch their values if what you need wasn't already dumped in the output window.

Other options include

debug:VisualTreeDebugger.BreakOnTap="True"
debug:VisualTreeDebugger.BreakOnLayoutUpdated="True"
debug:VisualTreeDebugger.BreakOnLoaded="True"
debug:VisualTreeDebugger.TraceOnTap="True"
debug:VisualTreeDebugger.TraceOnLayoutUpdated="True"
debug:VisualTreeDebugger.TraceOnLoaded="True"

Since it is source code and really a single simple class - you can easily add additional things to the code to do any custom debugging you need.

share|improve this answer

XAML Spy is what you need. You find it at http://xamlspy.com.

share|improve this answer
Did you read the question? I did mention XAML Spy by name, and I said I can't justify the cost. – roryok Dec 13 '12 at 10:04
Sorry, missed that part. Haven't found any other tools that gives you what you're looking for regarding Windows Store. I believe that you can get a free trial. – xamlgeek Dec 13 '12 at 15:39
On the other hand - XAML Spy is indeed what you need. I haven't heard of anything else for WinRT either, unless you could do with just text dump and hooks into visual tree - then you could use WinRT XAML Toolkit... – Filip Skakun Dec 13 '12 at 21:09
also XAML Spy has a trial period, that you can use if it is a one time shot :) thanks for the tip! – Vando Feb 7 at 23:18

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.