tags:

views:

46

answers:

2

What tool are you using to draw the elements of a WPF application? Do you edit the XAML manually or do you use any tool?
Do you know a tool which is easy to use?
Thank you

A: 

I use Expression Blend

or

Kaxaml which is lighter weight

bendewey
I know Kaxaml, but you have to edit the xaml manually, or not?
Maurizio Reginelli
Good point, Kaxaml is only good for viewing the xaml output not constructing. (with the exception of color, which you can set to synchronize with the xaml)
bendewey
+1  A: 

Visual Studio 2010 has an improved WPF/Silverlight editor.

Expression Blend is good for working with templates, visual states, and animation.

Expression Design can draw and export vector graphics in XAML format.

Manual editing is always useful at some point in the process.

Sometimes you may want to generate your graphics in code.

Doug Ferguson