Multiple windows in Visual Studio

前端 未结 4 1761
暖寄归人
暖寄归人 2021-02-20 03:52

I\'ve just come to Visual Studio 2008 from a UNIX / Java background.

In Visual Studio, how can I have multiple overlapping editor windows? In Eclipse, I can open a new

相关标签:
4条回答
  • 2021-02-20 04:01

    If you are a vim user, and install VsVim, you have an effective work around for dealing the quirky behaviour Visual studio has for moving between file editing windows.

    You can easily make vertical and horizontal split windows within the "main" file editing window, just as you would in vim, using the regular vim keys. e.g. with any of the regular vim commands :vs, <C-w>s, <C-w>v, ...

    If you tear off a second editing window (e.g. with the mouse) and put it on a separate monitor, you can use Vim's global marks, or <C-w>w (and similar commands for navigating between panes in vim) to jump between file editing windows across different monitors/screens with just a few keys.

    0 讨论(0)
  • 2021-02-20 04:04

    You can click on the tab of the window and drag outside making it a standalone window.

    0 讨论(0)
  • 2021-02-20 04:05

    Alt+Tab is for switching between applications on Windows.

    To switch between windows within Visual Studio use Ctrl+Tab.

    This should work on any mutli-windowed application.

    0 讨论(0)
  • 2021-02-20 04:11

    You can change the window layout in the Tools menu under Options. The very first item is Environment\General. You can choose Multiple Documents (versus Tabbed Documents). That may give you the "look" you are describing.

    However, I don't think it is possible to use alt+tab to change windows since those windows still belong to the single instance of VS2008. You can change windows with ctrl+F6. In addition, a nice trick when using Tabbed Documents is to press ctrl+alt+down arrow. That brings up a list of all open editor windows.

    0 讨论(0)
提交回复
热议问题