在 C# 中实现轨迹栏上的工具提示

发布于 2024-10-11 11:05:13 字数 173 浏览 1 评论 0原文

我正在尝试实现带有工具提示的轨迹栏。我想要的是当轨迹栏滚动时工具提示出现在某些值处然后消失(并出现在该值的 x,y 坐标处)。 我已经能够启动并运行工具提示,但不幸的是,当鼠标悬停在轨迹栏上时,它总是出现。

使用 .NET Framework 2.0

非常感谢任何帮助/建议。

谢谢

I am trying to implement a trackbar with a tooltip. What I want is that the tooltip to appear at certain values when the trackbar is scrolling and then disappear ( and appear at the x,y coordinate of that value).
I have been able to get the tooltip up and running but unfortunately it appears all the time when the mouse hovers over the trackbar.

Using .NET framework 2.0

Any help/suggestions greatly appreciated.

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

稚然 2024-10-18 11:05:13

您需要 Tooltip.Show 的重载

You need this overload of Tooltip.Show

心房的律动 2024-10-18 11:05:13

我认为你应该使用气球工具提示

ToolTip btt= new ToolTip(); 

btt.ToolTipTitle = "Tooltip"; 
btt.UseFading = true; 
btt.UseAnimation = true; 
btt.IsBalloon = true; 
btt.ShowAlways = true; 
btt.AutoPopDelay = 5000; 
btt.InitialDelay = 1000; 
btt.ReshowDelay = 500; 


btt.SetToolTip(button3, "Clicked."); 

I think you should use a balloon tooltip

ToolTip btt= new ToolTip(); 

btt.ToolTipTitle = "Tooltip"; 
btt.UseFading = true; 
btt.UseAnimation = true; 
btt.IsBalloon = true; 
btt.ShowAlways = true; 
btt.AutoPopDelay = 5000; 
btt.InitialDelay = 1000; 
btt.ReshowDelay = 500; 


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