.Net 2.0 Winform 标签工具提示

发布于 2024-07-08 04:47:24 字数 83 浏览 4 评论 0原文

这一定是我刚刚错过的东西,但是如何向标签添加工具提示呢?

我在网上看到一些有关处理鼠标悬停事件的内容,但是我该如何在代码中处理它呢?

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

翻身的咸鱼 2024-07-15 04:47:24

在表单中添加工具箱中的 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.

北方的巷 2024-07-15 04:47:24

难道您不只是将 ToolTip 放到表单上,然后选择标签并设置“Tooltip on Tooltip1”属性吗? 至少我记得是那样做的,或者是非常接近的方式。

以编程方式来自 MSDN

System.Windows.Forms.ToolTip ToolTip1 = new System.Windows.Forms.ToolTip();
ToolTip1.SetToolTip(this.textBox1, "Hello");

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:

System.Windows.Forms.ToolTip ToolTip1 = new System.Windows.Forms.ToolTip();
ToolTip1.SetToolTip(this.textBox1, "Hello");
若相惜即相离 2024-07-15 04:47:24

将 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)

等待我真够勒 2024-07-15 04:47:24
button = new Button(); 
button.Content = "Hover over me."; 
tt = new ToolTip(); 
tt.Content = "Created with C#"; 
button.ToolTip = tt; 
cv2.Children.Add(button);

来自 http://msdn.microsoft.com/en-us/library/ms754034 .aspx

button = new Button(); 
button.Content = "Hover over me."; 
tt = new ToolTip(); 
tt.Content = "Created with C#"; 
button.ToolTip = tt; 
cv2.Children.Add(button);

from http://msdn.microsoft.com/en-us/library/ms754034.aspx

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文