VS2010 Keyboard Shortcut - Show ToolTip
Question: How to display the mouse hover over tooltip in VS2010 开发者_JAVA技巧using a keyboard shortcut?
Ctrl+Shift+Space gives some detail on overloads.
Cheers
Dave
public ActionResult About()
{
return View();
}
The mouse hover info is called "Quick Info". The default keybinding for it in the C# profile is Ctrl-k, Ctrl-i.
It's also the third icon from the left in the "Text Editor" toolbar:
.The Ctrl + Shift + Space shortcut shows the exact same information as the tooltip (i.e. the member summary and the first overload). Is there a particular reason that you need to see the tooltip specifically?
精彩评论