Is there a keyboard shortcut for the method dropdown list in Visual Studio 2010's VB.NET code editor?

前端 未结 3 1215
不思量自难忘°
不思量自难忘° 2021-02-20 00:56

In Visual Studio, there is a method dropdown list in VB code editor windows. This is highlighted in the screenshot below.

I would like to find out whether there is a def

相关标签:
3条回答
  • 2021-02-20 01:16

    CTRL+ F2 and Tab can access that dropdown list. I was not able to find the direct short-cut for that dropdown list for long time.

    Tools->Options->Environments->Keyboard can assign some short-cuts manually.

    0 讨论(0)
  • 2021-02-20 01:23

    Ctrl + F2 is assigned as a default shortcut key to move the cursor to Navigation Bar. (L.H.S is classes dropdown and R.H.S is methods dropdown.)

    You can use Tab to jump to methods dropdown.

    The whole combination that you need is Ctrl + F2 + Tab.

    Hope this will help you.

    0 讨论(0)
  • 2021-02-20 01:23

    Using AutoHotKey I was able to create a easier shortcut key: Windows + Shift + O

    #+o::
      Send ^{F2}{Tab}{Tab}{Down}
    Return
    

    It immediately opens the dropdown too

    0 讨论(0)
提交回复
热议问题