visual-studio 滚动方法重载工具提示的 Visual Studio 键盘快捷键?
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/959024/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
Visual Studio keyboard shortcut to scroll method overloads tooltips?
提问by littleduckie
Does anyone know what the keyboard shortcut to scroll a method's overloads that appears in the tooltip is? I presently have to resort to using the mouse to click the ^ and v labels in the tooltip, which isn't particularly effective.
有谁知道滚动出现在工具提示中的方法重载的键盘快捷键是什么?我目前不得不求助于使用鼠标单击工具提示中的 ^ 和 v 标签,这不是特别有效。
Thanks!
谢谢!


采纳答案by Michael Petrotta
The arrow keys work for me...
箭头键对我有用...
回答by Nigel Touch
What's the command to bring up the tooltip? I know the shortcut in Eclipse (Ctrl+ Space) but that's Eclipse...
In VS the tooltip shows when you type the first bracket but if I would like to see the different method overloads for a method that's been implemented already, how would I do that?
调出工具提示的命令是什么?我知道 Eclipse ( Ctrl+ Space) 中的快捷方式,但那是 Eclipse ...
在 VS 中,当您键入第一个括号时,工具提示会显示,但如果我想查看已实现的方法的不同方法重载,我该怎么做?
Press Ctrl+ Shift+ Spaceto see the list of overloads and arguments.
按Ctrl+ Shift+ Space,看看重载和参数列表。
See the Visual C# 2008 Keybinding Reference Posterfor more keyboard shortcuts.
有关更多键盘快捷键,请参阅Visual C# 2008 键绑定参考海报。
回答by cyberkyro
A little late but maybe somebody else needs it too:
有点晚了,但也许其他人也需要它:
- Place the cursor after the first bracket
- Press Ctrl+ Shift+ Space
- 将光标放在第一个括号之后
- 按Ctrl+ Shift+Space
回答by CoderDennis
Sometimes I have to hit escape to get rid of the intellisence popup before using the arrow keys to scroll through the overload list.
有时,在使用箭头键滚动重载列表之前,我必须按 Esc 键来摆脱智能弹出窗口。
回答by Meetu Choudhary
Arrow keys are the short cut keys i suppose as they work for me.
箭头键是我认为的快捷键,因为它们对我有用。
回答by Adam Asham
What's the command to bring up the tooltip? I know the shortcut in Eclipse (ctrl+space) but that's Eclipse...
调出工具提示的命令是什么?我知道 Eclipse 中的快捷方式(ctrl+space),但那是 Eclipse...
In VS the tooltip shows when you type the first bracket but if I would like to see the different method overloads for a method that's been implemented aldready, how would I do that?
在 VS 中,当您键入第一个括号时,工具提示会显示,但如果我想查看已经实现的方法的不同方法重载,我该怎么做?
There's got to be an easier way than this:
一定有比这更简单的方法:
- place the cursor just after the first bracket
- erase it
- re-type it (tada!)
- navigate the methods using up and down arrows
- when you're done, press ctrl+z to undo changes.
- 将光标放在第一个括号之后
- 抹掉它
- 重新输入它(tada!)
- 使用向上和向下箭头浏览方法
- 完成后,按 ctrl+z 撤消更改。
回答by Vasil
Ctrl + Shift + Space in the "()" method brackets brings up the method overload context menu. The UP and DOWN arrows are used to navigate through.
“()”方法括号中的 Ctrl + Shift + Space 调出方法重载上下文菜单。向上和向下箭头用于导航。
The Visual Studio Keybindings definition is : Displays the name, number, and type of parameters required for the specified method.
Visual Studio Keybindings 定义是:显示指定方法所需参数的名称、数量和类型。
P.S. Jasper's link to Visual C# 2008 Keybinding Reference Poster is useful, check it out.
PS Jasper 指向 Visual C# 2008 键绑定参考海报的链接很有用,请查看。

