将 listviewitem 工具提示更改为气球
有没有一种简单的方法可以将列表视图项的工具提示属性设置为气球?通常我要做的就是:
Tooltip tt = new Tooltip("This is a tooltip");
tt.isBalloon = true;
但是我该如何为列表视图项目执行此操作
is there a simple way to set the tooltip property of a listview item to be a balloon? Typically all i would do is:
Tooltip tt = new Tooltip("This is a tooltip");
tt.isBalloon = true;
but how do i do this for a listview item
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
当鼠标悬停在某个项目上时,您可以手动显示
工具提示
,请检查此文章
You can manually show
ToolTip
when mouse is over certain itemcheck this article
没有一种简单的方法可以更改 ListView 上的工具提示。有关原因的详细说明,请参阅此博客。
ObjectListView - 一个围绕标准 WinForms ListView 的开源包装器 - 执行以下操作:为您提供合理的工作量,以便您可以用最少的精力展示增强的工具提示。
即使你不想使用 ObjectListView,你仍然可以查看代码来了解它是如何实现的已完成(诚然,就工具提示而言,已经完成了大量工作,将这些工作提取到另一个项目中会很棘手)
There isn't an easy way to change the tooltip on a ListView. See this blog for a detailed explanation of why.
ObjectListView -- an open source wrapper around a standard WinForms ListView -- does a reasonable amount of work for you so that you can show enhanced tool tips with minimal effort on your part.
Even if you don't want to use ObjectListView, you can still look at the code to see how it is done (admittedly, in the case of tool tips, there was a lot of work done and it would be tricky to extract that work into another project)