Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Separating designer from XAML window for WPF in VS2010

I don't see a button to separate the designer window from the XAML window for WPF in Visual Studio 2010.

I've got three screens, and I want both a full screen XAML window and a full screen designer window.

like image 249
Gpx Avatar asked Jun 24 '10 17:06

Gpx


1 Answers

  1. Open your XAML file as usual.
  2. In the solution explorer, right-click on your XAML file and choose "Open with...", then "Source Code (Text) Editor", then OK.

You should now have two tabs for your XAML file, one in design view and one in code view. At this point, you can drag one of them onto your second monitor while leaving the other in place.

Hope it helps!

like image 168
VoodooChild Avatar answered Sep 22 '22 22:09

VoodooChild