Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a hotkey in Visual Studio to open the member drop down list?

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?

like image 295
Simon Keep Avatar asked Sep 21 '09 13:09

Simon Keep


People also ask

How do you open a drop down list using the keyboard?

Use Alt + Down Arrow keys (Windows and Linux) or Option + Down Arrow keys (Mac) to open drop-down lists that do not have an Apply or Go button, and then use the Down Arrow, Up Arrow and Enter keys to select an item in the drop-down.

What is Ctrl Shift F in Visual Studio?

Ctrl-Shift-F is used to find all the ocuurance of a string with in entire solution and display find result window as shown below. Ctrl-F is used to find a string in the current document, project and all open documents one by one.

What does Ctrl S do in Visual Studio?

Bookmark this question. Show activity on this post. I am working on a React project using a Visual Studio Code. When I press Ctrl + S in the Visual Studio Code to save file, it removes all the JavaScript formatting or scatters all the code in the file.


2 Answers

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.

like image 176
Donut Avatar answered Sep 21 '22 15:09

Donut


Visual Studio 2017+: They now support Resharper-like shortcuts. They work pretty well, too.

  • Ctrl+T - 'Go to All' (class/member/file), type m MyProp for members only
  • Alt+\ - 'Go to Member in current file'

enter image description here

like image 27
Cristian Diaconescu Avatar answered Sep 19 '22 15:09

Cristian Diaconescu