.Net 2.0 Winform 标签工具提示
这一定是我刚刚错过的东西,但是如何向标签添加工具提示呢?
我在网上看到一些有关处理鼠标悬停事件的内容,但是我该如何在代码中处理它呢?
This has got to be something I just missed, but how do I add a tool tip to a label?
I saw something on the web about handling the mouse hover event, but how would I even handle it in code?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
在表单中添加工具箱中的 TooTip,然后在标签中单击一次,您将在属性框中看到 ToolTip。
Add in your form the TooTip from the ToolBox than click once in your label and you'll see ToolTip in the property box.
难道您不只是将 ToolTip 放到表单上,然后选择标签并设置“Tooltip on Tooltip1”属性吗? 至少我记得是那样做的,或者是非常接近的方式。
以编程方式来自 MSDN:
Don't you just drop a ToolTip on a form, and then select the label and set the "Tooltip on Tooltip1" property? At least I remember doing it that way, or something very close to it.
Programmatically from MSDN:
将 TOOLTIP 控件拖放到窗体上。 此时,工具提示属性将出现在设计器中标签的属性中(并且可以在代码中访问)
Drop the TOOLTIP control onto your form. At that point, a ToolTip attribute appears in the Label's properties in the Designer (and is accessible in the code)
来自 http://msdn.microsoft.com/en-us/library/ms754034 .aspx
from http://msdn.microsoft.com/en-us/library/ms754034.aspx