vote up 16 vote down star
17

What tools beside Visual Studio's Cider do you use?
Have you succeed in using something from Microsoft Expression product family?

EDIT:
Here are revealed tools:

  1. Snoop
  2. Mole debugger visualizer
  3. Perforator suggested by Matt Hamilton
  4. The Expression Blend 2.5 Preview suggested by Anthony Conyers
  5. Kaxaml suggested by Anthony Conyers & Brad Leach
  6. Xaml Export suggested by Artur Carvalho

Some other related questions:

flag

33% accept rate

9 Answers

vote up 9 vote down

Microsoft provides a handy tool called "Perforator" which can tell you which parts of your WPF application are being rendered in software. It's part of a larger set of "Performance Profiling Tools" which you can find here.

link|flag
vote up 5 vote down

I use the following tools for WPF development:

  • Snoop - This tool simplifies debugging of WPF apps at runtime.
  • Mole - Awesome visualizer for Visual Studio. Highly recommended for not just WPF work (although it was built for WPF).
  • Kaxaml - Great little tool to “play” with XAML. Full intellisense. I use it to see how XAML will be rendered.
  • Expression Blend - Mainly for copying control templates, but also some styling work.
link|flag
vote up 5 vote down

In addition to Snoop, Mole and VS2K8 is use:

I'm in Blend at least as much as Visual Studio when I'm working on the UI in WPF projects. I use Blend to create the initial versions of a UI and then I'll tweak the xaml manually inside of VS. I use Kaxaml to "try things out". If I want to experiment and I don't want the overhead of creating a new project in VS or Blend, I'll use Kaxaml instead.

link|flag
vote up 2 vote down

Xaml Export. Exports vectors (like the ones made in Adobe Illustrator) to xaml.

link|flag
vote up 1 vote down

XAML Power Toys another VS addin form author of Mole, Karl Shifflett. Generates forms, listviews, grids basing on class metadata. Also some useful xaml tricks: grouping elements into panels, clearing designer generated code, etc.

link|flag
vote up 1 vote down

I use ReaderSvg to convert SVG (vector graphics) to XAML.

And not directly related to WPF, but very useful to understand how WPF controls work: Reflector.

link|flag
vote up 1 vote down

Crack.NET is a runtime debugging and scripting tool Josh Smith made that gives you access to the internals of any .NET desktop application running on your computer. If you love Snoop and Mole for Visual Studio, you’ll love Crack.NET, too. Crack.NET allows you to “walk” the managed heap of another .NET application, inspect all kinds of values on objects, and even manipulate those objects via IronPython scripts.

Crack.NET

link|flag
vote up 1 vote down

I use all the tools listed in the answer so I'll add one to the mix.

Rooler - This is an awesome tool for UI work and I believe it's implemented in WPF.

link|flag
vote up 0 vote down

WPF PerfTool may be useful

link|flag

Your Answer

Get an OpenID
or

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