Keyboard shortcut for opening a popup in visual studio

I noticed that when performing actions such as implementing an interface, a small rectangle appears at the beginning of the interface. Then I have to hover over the rectangle and it will become the context menu. Then I can choose to implicitly implement the interface or explicitly implement the interface. Or, for example, when I'm of type Collection, and I need to import System.Collections.ObjectModel. I'm tired of getting to my mouse and hovering over the rectangle and waiting for the context menu. Is there a keyboard shortcut for this? If yes, please give me every shortcut for this. By the way, Visual Studio is configured for me to configure C # development, not GENERAL!

+3
source share
2 answers

If you don’t have one or prefer your own, use Tools + Customize, Keyboard and assign keys to the Edit.ImplementInterfaceStubsImplicitly and Edit.ImplementInterfaceStubsExplicitly commands.

+1
source

EDIT: CTRL+ .and SHIFT+F10

+8
source

Source: https://habr.com/ru/post/1734784/


All Articles