如何在 C# 中使工具提示指向特定标签?
在我的应用程序中,我想使用工具提示指向标签以引起用户注意:
toolTip.IsBalloon = true;
toolTip.Show("message", label1);
问题是气球没有指向指定的标签。 我应该怎么办?
In my application I want to use a tooltip to point at a label to get the users attention:
toolTip.IsBalloon = true;
toolTip.Show("message", label1);
The problem is that the balloon isn't pointing at the specified label.
What should I do?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这是一个已知的错误。
尝试调用它两次以解决黑客问题:
This is a known bug.
Try calling it twice for a hack work-around:
你可以做这样的事情..更具体(即)工具提示将显示多长时间...
MouseLeave
当鼠标进入时
You can do something like this.. more specific (i.e) how much time the tool tip will be displayed...
When MouseLeave
when mouse enter
Tooltip 与 MouseHover 和 MouseLeft 配合使用 [想象一下这样]
如果鼠标移到标签上,将显示工具提示,当鼠标离开时,工具提示将消失。
代码应该是:
只有 ToolTipTitle 是可选的:)
Tooltip works with MouseHover and MouseLeft [just imagine in this way]
If the mouse come over the Label, the tooltip will be displayed, when the mouse left, tooltip will dissappear.
and the code should be:
just ToolTipTitle is optional :)