将 listviewitem 工具提示更改为气球

发布于 2024-11-10 08:25:53 字数 168 浏览 3 评论 0原文

有没有一种简单的方法可以将列表视图项的工具提示属性设置为气球?通常我要做的就是:

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

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

发布评论

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

评论(2

离笑几人歌 2024-11-17 08:25:54

当鼠标悬停在某个项目上时,您可以手动显示工具提示

请检查此文章

You can manually show ToolTip when mouse is over certain item

check this article

夜夜流光相皎洁 2024-11-17 08:25:54

没有一种简单的方法可以更改 ListView 上的工具提示。有关原因的详细说明,请参阅此博客

ObjectListView - 一个围绕标准 WinForms ListView 的开源包装器 - 执行以下操作:为您提供合理的工作量,以便您可以用最少的精力展示增强的工具提示。

Tooltip on an ObjectListView

即使你不想使用 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.

Tooltip on an ObjectListView

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)

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