Is there a keyboard shortcut for the drop-down list of the method in the Visual Studio 2010 VB.NET editor?

Visual Studio has a drop-down list of methods in the VB editor windows. This is shown in the screenshot below.

I would like to know if there is a default keyboard to access this list, or if such a keyboard binding can be configured manually (and if so, how)?

Dropdown list in upper right corner of the VB.NET code editor window

+8
visual-studio visual-studio-2010 keyboard-shortcuts
source share
2 answers

Ctrl + F2 is assigned as the default keyboard shortcut to move the cursor to the navigation bar . ( LHS is a drop-down list of classes and RHS is a disclosure of methods).

You can use Tab to jump to drop-down lists of methods.

All the necessary combination Ctrl + F2 + Tab .

Hope this helps you.

+13
source share

Ctrl + F2 and Tab can access the dropdown list. For a long time I could not find a direct abbreviated list for this drop-down list.

Tools-> Options-> Environment-> Keyboard can assign several abbreviations manully.

+3
source share

All Articles