Visual Studio Tips and Tricks

Productivity Driven Development

Speed Up the XAML Editor in Visual Studio

| Comments

If you work with WPF at all, you have probably suffered through the painfully slow XAML editor. Any time you open a new XAML file, or switch to one, Visual Studio can take upto a couple of seconds to load the file and become responsive. Here are 2 things you can try to make the experience faster:

  • Don’t load the Design View by default. Under Tools->Options->Text Editor->XAML->Miscellaneous, check “Always open documents in full XAML view”.

  • Change the default editor for XAML. Right click on a XAML file in Solution Explorer, click on “Open With…” and Select “Source Code (Text) Editor”. Then click the button “Set as Default”. Your intellisense should still work as before, and you can switch to the design view by right clicking in the text editor and clicking “View Designer”, or using the keyboard shortcut (Shift + F7).

Want to learn more about Visual Studio? Check out this Pluralsight Course.
Use SqlSmash to write maintainable SQL scripts, understand code faster and navigate around easily in SSMS.

Comments