简体   繁体   English

将鼠标悬停在C#关键字上时,Visual Studio工具提示

[英]Visual Studio tooltips when hover over C# keywords

Is there any tools from Microsoft or maybe 3rd party with tooltips when hoovering over C# keywords? 在使用C#关键字时,是否有来自Microsoft或第三方提供工具提示的工具?

Maybe it is already in VS and it just need to be turned on? 也许它已经在VS中而且只需要打开它?

Something like: 就像是:

Hover over 'private' keyword will display tooltip with: 将鼠标悬停在'private'关键字上会显示工具提示:

The private keyword is a member access modifier. 
Private members are accessible only within the body of the class
or the struct in which they are declared.

Something like that. 这样的事情。

There aren't any 3rd party tooltip extensions that I am aware of, however you could use Peek Help . 我不知道有任何第三方工具提示扩展,但您可以使用Peek帮助 It isn't a tooltip, however it is a means to view the documentation. 它不是工具提示,但它是查看文档的一种方法。

In your example, right click on private and click on Peek Help . 在您的示例中,右键单击private并单击Peek Help Alternatively you could use the keyboard shortcut Alt+F1 . 或者,您可以使用键盘快捷键Alt+F1

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 在设计器模式C#Visual Studio 2015/2013中将鼠标悬停在Richtextbox上时,鼠标会出现故障 - Mouse glitching when hover on richtextbox in designer mode C# visual studio 2015/2013 Visual Studio 2022 未在鼠标悬停时显示参数 XML 文档工具提示 - Visual Studio 2022 not showing parameter XML docs tooltips on mouse over 如何在鼠标悬停时更改按钮的边框颜色 (c# | Visual Studio) - How to change border colour of buttons when hovered over (c# | Visual Studio) C#Monogame Visual Studio-游戏菜单不起作用,当敌人被击中时,跨屏游戏不起作用 - c# monogame visual studio - game menu not working, game over screen not working when enemy hit Visual Studio 2002:通过TCP / IP发送文件时C#冻结 - Visual Studio 2002: C# freezes when sending file over TCP/IP 什么时候不保留C#关键字? - When are C# keywords not reserved? 通过标签名称C#Visual Studio中包含的关键字清除组框中的标签 - Clearing Labels in a Group Box by keywords contained in Label Name C# Visual Studio 当我将鼠标悬停在C#TaskBar项上时,它消失了 - C# TaskBar Item disappears when I hover over it 图像上的C#Visual Studio 2017隐形+可单击按钮 - C# Visual Studio 2017 invisible + clickable buttons over a image 将鼠标悬停在C#中的按钮效果上(使用Visual Studio 05) - Mouse Over Effects for Button in C# (using Visual Studio 05)
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM