开发者

VS2010 Keyboard Shortcut - Show ToolTip

开发者 https://www.devze.com 2023-01-04 08:49 出处:网络
Question:How to display the mouse hover over tooltip in VS2010 开发者_JAVA技巧using a keyboard shortcut?

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:

VS2010 Keyboard Shortcut - Show ToolTip

.


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?

0

精彩评论

暂无评论...
验证码 换一张
取 消