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?

link|improve this question

feedback

6 Answers

up vote 5 down vote accepted

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.

link|improve this answer
feedback

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.

link|improve this answer
feedback

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

link|improve this answer
feedback

On a fresh install of Visual Studio I don't have the 'type' or 'member' drop downs on a code page.

They should be below the tab with the page name and just above the code. But they aren't.

I think this is the same situation as the original poster.

Is there a keyboard shortcut that shows/hides these items that I could have accidentally hit?

link|improve this answer
I think you are more likely to get a response to this if you raise it as a new queston. – Simon Keep Oct 12 '09 at 8:13
feedback

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.

link|improve this answer
feedback

I think its CTRL K + I - or you can get at it through the toolbar..Customize..Keyboard dialog to re-assign.

EDIT: Misunderstood the question: that shortcut is to display the parameter info

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.