tags:

views:

44

answers:

2

I found Mole, which looks like exactly the thing I need, but alas there is no VS 2010 support. I'm not sure if the project is being maintained either. Are there other tools for live debugging/inspecting of a XAML control tree? I'm looking for something like firebug for XAML...

+1  A: 

I like Snoop

Rachel
The most recent version of Snoop is on CodePlex: http://snoopwpf.codeplex.com/
John Myczek
+4  A: 

The latest version of Snoop on CodePlex supports up to .NET 4 and x64. It runs outside of VS so it doesn't matter what version you're using and in fact you don't even need VS at all. You can just run it against pretty much any WPF app. I tried Mole a few times but never really got into it because Snoop is so much better, especially if you're doing MVVM and can't easily break into the debugger with an appropriate scope to see the UI.

John Bowen