你最喜欢的Visual Studio快捷键是什么?我总是把我的手放在键盘上,远离鼠标!
请回答一个问题。
你最喜欢的Visual Studio快捷键是什么?我总是把我的手放在键盘上,远离鼠标!
请回答一个问题。
当前回答
Ctrl + M, L -展开所有区域
其他回答
雷说的。Ctrl + ..
我真的不喜欢智能标记(那些看起来想要帮助你的蓝色和红色下划线),直到我发现你不需要浪费时间试图将鼠标悬停在菜单显示的精确像素上。
我认为是Ctrl +。打开智能标签菜单每天为我节省了大约5分钟,并大大降低了我的血压。
Ctrl+M, o可以折叠和展开特定文件中的所有代码部分。
格式的文档
Ctrl+K, Ctrl+D
On an aspx page, this takes care of properly indenting all of your markup and ensures that everything is XHTML compliant (adds quotes to attributes, corrects capitalization, closes self-closing tags). I find that this makes it much easier to find mismatched tags and to make sure that my markup makes sense. If you don't like how it's indenting, you can control which tags go on their own line and how much space they get around them under Tools/Options/Text Editor/HTML/Format/Tag Specific Options. In your C# or VB code, this will correct any capitalization or formatting issues that didn't get caught automatically. For CSS files, you can choose compact (one definition per line), semi-expanded, or expanded (each rule on its own line); and you can choose how it handles capitalization.
Shift + ESC
这将隐藏/关闭Visual Studio中的任何“假窗口”窗口。这包括解决方案资源管理器、对象浏览器、输出窗口、即时窗口、单元测试窗口等,无论它们是固定的、浮动的、可停靠的还是选项卡的,都仍然适用。
用快捷键进入一个窗口(例如,Ctrl + Alt + L或Ctrl + Alt + I)做你需要做的事情,并Shift + Esc来摆脱它。如果你不摆脱它,唯一的方法让它再次聚焦是使用相同的键盘快捷键(或鼠标,这是我们试图避免的....)
一旦你掌握了窍门,它就非常有用。
叽阿…在我发现这个之前,按Ctrl + F4关闭“窗口”只看到我当前的代码窗口关闭的次数是疯狂的,现在它只偶尔发生。
评论
Ctrl+K, Ctrl+C -注释当前项目 Ctrl+K, Ctrl+U -取消当前项目的注释
这样做的好处是它适用于你当前所在的元素——你不需要选择一整行VB代码来注释它,例如,你只需要输入Ctrl+K, Ctrl+C来注释当前行。在一个aspx页面上,你可以注释掉一大块代码——例如整个ListView——只需要到第一行并按Ctrl+K, Ctrl+C。