JFace ComboViewer 带有标题条目?

发布于 2024-10-16 17:19:41 字数 146 浏览 2 评论 0原文

我有兴趣用对象列表填充 ComboViewer。 我知道 JFace 有一些很好的功能来支持这一点,但是如果我想让 ComboViewer 中的第一个条目类似于 <选择连接> 或者其他一些没有关联对象的虚拟条目?有没有简单通用的解决方案?

I'm interested in populating a ComboViewer with a list of objects.
I know JFace has some nice features that support that, but what if I want to make the first entry in the ComboViewer something like
<Select Connection>
or some other dummy entry that doesn't have an object associated to it? Is there any simple generic solution to it?

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

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

发布评论

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

评论(2

时光礼记 2024-10-23 17:19:41

您可以使用 Nebula 项目中的 TableCombo 小部件来完成此操作。您可以使用输入、选择侦听器等创建 TableComboViewer,但也可以独立于当前选择设置组合的文本。

TableComboViewer viewer = ...
...
viewer.getTableCombo().setText("...");

我在当前的项目中使用它。然而,TableCombo 处于 alpha 状态,但在我的应用程序中它工作得很好。

You could do this with the TableCombo widget from the Nebula project. You can a create TableComboViewer with input, selection listeners etc. but also set the text of the combo independently from the current selection.

TableComboViewer viewer = ...
...
viewer.getTableCombo().setText("...");

I use this in a current project. However the TableCombo is in alpha state, but in my application it works quite fine.

温柔女人霸气范 2024-10-23 17:19:41

AFAIK 你不能开箱即用。您可以编写自己的 LabelProvider 来执行此操作,或者您可能希望切换到弹出窗口中的 ListViewer 之类的内容,并使用列表的标题来显示特殊的第一个元素。

AFAIK you can't do it out of the box. You can write you own LabelProvider to do this, or you may want to switch to something like a ListViewer in a popup window, and use the List's headers to display your special first element.

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