views:

1017

answers:

4

I just wanted to do some tutorials in WPF but I find that the designer works very slow in comparision to Windows Forms/GDI+.

Are there any tweaks to speed it up?

+3  A: 

If you're just after a bit of XAML editing, you can use a separate editor, such as XamlPad. That has much quicker rendering than the VS designer.

Giraffe
+2  A: 

Turn it off. The VS XAML designer is awful and doesn't work anyway as soon as your XAML is non-trivial. Go into your options and map the .xaml extension to the regular XML Editor.

HTH, Kent

Kent Boogaart
+2  A: 

I turned it off.

  1. Right click the xaml file in Solution explorer,
  2. use Source code (Text) Editor
  3. Set it as default

Good thing is Intellisense still works! In case you need to view the Design view occasionally, you can still Right click -> Design view.

HelloSam
A: 

you can look in the following link. quite same as the previous answers."How to speed up Visual Studio 2008's slow WPF designer"

tal