Open two instances of a file in a single Visual Studio session

前端 未结 15 1556
误落风尘
误落风尘 2020-12-02 03:21

I have a file, xyz.cpp. I want to open two instances of this file in Visual studio (BTW, I am using Visual Studio 2005). Why would I want to do so? I want

15条回答
  •  既然无缘
    2020-12-02 04:03

    With the your file opened, go to command window (menu ViewOther WindowsCommand window, or just Ctrl + Alt + A)

    Type:

    Window.NewWindow
    

    And then

    Window.NewVerticalTabGroup
    

    worked for me (Visual Studio 2017).

    Or using menus:

    Menu WindowNew Window

    Menu WindowNew vertical tap group

提交回复
热议问题