Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>No, this is not possible. The <a href="http://blogs.msdn.com/b/zainnab/archive/2010/11/21/window-layouts-the-four-modes-vstipenv0051.aspx" rel="noreferrer">website you found</a> is indeed accurate:</p> <blockquote> <p>There are four different window layout modes in Visual Studio:</p> <ul> <li><em>Design View</em> - this is the one you see when you start up Visual Studio. It's what most people refer to as the "normal" view.</li> <li><em>Debugging View</em> - this is the view that you get when you enter Debug Mode like when you are stepping through your code</li> <li><em>Full Screen</em> - the view you get when you go to View -> Full Screen (<kbd>Shift</kbd> + <kbd>Alt</kbd> + <kbd>Enter</kbd>).</li> <li><em>File View</em> - the lesser known view you can get when you open up a file in DevEnv.eve</li> </ul> <p>The thing to remember here is that, both, your tool windows and your command bar customizations are saved separately for each state. There is no way to tell Visual Studio to use one state for all modes at this time. Additionally, when you shut down Visual Studio in any state, all four states are saved. </p> </blockquote> <p>It's very strange that you would want to use the same window layout for all four modes. The same windows that are useful at design time are hardly ever useful during debugging, and vice versa.<br> For example, in Debugging View, I hide the Toolbox, Document Outline, and Property Manager windows. Then, I add the immensely useful Call Stack, Autos, Locals, Processes, Modules, and Breakpoints windows. None of the latter panes would be remotely useful to me in design mode, so I don't want them taking up screen space. But they're <em>invaluable</em> in debug mode, so I want them to show up. I also resize windows in the two different modes, based on their <em>relative</em> importance (such as the Properties window).</p> <p>If you really still think that the two views should have the same window layout, the best you can do is rearrange the windows manually to achieve the same layout in both modes. I also recommend exporting your Window Layout settings (Tools -> Import and Export Settings) so that you have a fresh copy to revert back to in the case of disaster. I keep settings files containing my preferred window layout settings for single monitor (laptop), dual monitor, and triple monitor configurations.</p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload