Is there a hotkey in Visual Studio to open the mem

2019-01-11 02:21发布

In Visual Studio there is a drop down list in the top right hand corner that you can use to navigate to the various members in the class. Does anyone know if there is a hot key to open this ddl?

5条回答
时光不老,我们不散
2楼-- · 2019-01-11 03:02

Assuming you are using the default keybindings packaged with Visual Studio, CTRL+F2 will focus the top-right drop-down list, and you can then navigate members by pressing TAB and using the arrow keys.

查看更多
老娘就宠你
3楼-- · 2019-01-11 03:06

I think you're looking for Ctrl + F2, which moves the cursor to the navigation bar at the top of a code view. From there, you can press Tab to move the cursor over to the member list.

For this (and pretty much every other Visual Studio hotkey/shortcut key combination), see here.

查看更多
趁早两清
4楼-- · 2019-01-11 03:10

Using VS 2008, I still don't know how to get directly to the Members dropdown which is what I want. But, the key bindings will be different for everyone. The command you want to search for under Options > Keyboard > Show commands containing: is Window.MoveToNavigationBar.

查看更多
仙女界的扛把子
5楼-- · 2019-01-11 03:13

Use Ctrl + F2 to get up there, then a click on Tab will get you to the member list instead of the object list.

查看更多
唯我独甜
6楼-- · 2019-01-11 03:24

In my install of VS 2013, this is called Window.MoveToNaviationBar and is bound to Ctrl+F8. This is visual C++ settings.

查看更多
登录 后发表回答