how to add tooltip on the entries and NOT on the combo in JFace ComboViewer(如何在条目上而不是在 JFace ComboViewer 中的组合上添加工具提示)
问题描述
我正在加载包含一千多个元素的 ComboViewer
.
I am loading my ComboViewer
with over one thousand elements.
有些元素比底层combo
的宽度还要长.
Some elements are longer than the width of underlying combo
.
我想在条目上添加工具提示,而不是在 combo
上.
I want to add tooltip on the entries and NOT on the combo
.
我希望这样,当列表下拉并且用户将鼠标指针放在其中一个值上时,整个文本应该可以通过 tooltip
显示,类似于 tooltip
为 JFace TableViewer
显示.
I want it in such a way that, when the list drops down and the user places the mouse pointer over one of the value, the entire text should be displayable via tooltip
similar to the tooltip
shown for a JFace TableViewer
.
推荐答案
如果您使用的是 ComboViewer
并且您提供自己的 CCombo
实例,您可以获得CCombo 和其中之一应该是一个显示为下拉菜单的 List
控件.您可以将 MouseTrackListener
添加到此 List
控件并根据鼠标悬停的项目显示工具提示.
If you are using a ComboViewer
and you provide your own CCombo
instance, you can get children of the CCombo and one of them should be a List
control that it shows as a dropdown menu. You can add your MouseTrackListener
to this List
control and show tooltip depending on which item the mouse is hovering.
这篇关于如何在条目上而不是在 JFace ComboViewer 中的组合上添加工具提示的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在条目上而不是在 JFace ComboViewer 中的组合上添加工具提示
基础教程推荐
- FirebaseListAdapter 不推送聊天应用程序的单个项目 - Firebase-Ui 3.1 2022-01-01
- 设置 bean 时出现 Nullpointerexception 2022-01-01
- Java:带有char数组的println给出乱码 2022-01-01
- 在 Libgdx 中处理屏幕的正确方法 2022-01-01
- Java Keytool 导入证书后出错,"keytool error: java.io.FileNotFoundException &拒绝访问" 2022-01-01
- 减少 JVM 暂停时间 >1 秒使用 UseConcMarkSweepGC 2022-01-01
- 降序排序:Java Map 2022-01-01
- “未找到匹配项"使用 matcher 的 group 方法时 2022-01-01
- 如何使用 Java 创建 X509 证书? 2022-01-01
- 无法使用修饰符“public final"访问 java.util.Ha 2022-01-01