Visual Studio 2008 中的导航栏有快捷方式吗?
在 Visual Studio 2008 中,您可以使用带有类名称组合框和方法名称组合框的导航栏。
从代码窗口进入这些组合框的快捷方式是什么?
In visual studio 2008 you have the navigation bar with Class Name combo box and Method Name combo box.
What is the shortcut to get inside any of these combo boxes from the code window?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我知道有人问过这个问题,但是 Visual Studio 2010 中是否为第二个导航框创建了直接快捷键?
I understand this has been asked, but has a direct shortcut key been created for the second navigation box in visual studio 2010?
Ctrl + F2 应该可以做到(尽管它确实取决于您使用的键盘映射 - Ctrl + F8是我的 Visual Studio 设置中的快捷方式)。
一般来说,如果您知道要查找的内容的名称,找到键盘快捷键的最简单方法是转到“工具”->“选项->环境->键盘,然后在“显示包含的命令”框中键入其名称。然后它将显示当前为该命令分配的快捷方式。
例如。在该框中输入
navigation
会在“所选命令的快捷方式”框中显示 Ctrl + F8(对我来说)。Ctrl + F2 should do it (although it does depend upon which keyboard mapping you are using - Ctrl + F8 is the shortcut in my Visual Studio settings).
In general, the easiest way to find a keyboard shortcut if you know the name of what it is you are looking for is to go to
Tools -> Options -> Environment -> Keyboard
and then type its name into the "Show commands containing" box. It will then show you the shortcut(s) currently assigned for the command.eg. typing
navigation
into that box shows Ctrl + F8 (for me) in the "shortcuts for selected command" box.