Creating a DUPLICATE window in visual studio 2012

I want two duplicates in the same code window. I want to place one code window on one monitor and a second code window on a second extended monitor. When I go to input, I want the second window to display the code that I print on the first monitor. Is this possible in visual studio 2012? It would be very useful for me to train students.

+6
source share
2 answers

I do not have the copy installed here for testing, but I believe that the answer you are looking for is hidden in the Window menu.

Activate the window you want to duplicate and in the Window on the toolbar select New Window . This will duplicate the active document. In the Window menu again you should find the option to make the Floating window

Update for Visual Studio 2013: Vertical split cshtml window in VS2013

+10
source

In VS2012, the function closest to what you need is called β€œSplit” and it is in the β€œWindow” menu when you select the code. This creates a split view of the selected code file in the original window.

I do not know how to separate copies from each other and swim on different screens.

+1
source

Source: https://habr.com/ru/post/951143/


All Articles