SWT TableViewer 不带 Ctrl 的多选

发布于 2024-12-03 02:00:00 字数 121 浏览 0 评论 0原文

我正在使用 TableViewer,我希望它的性能就像我按住 CTRL 键时一样。我的意思是,如果我单击一行,则必须将其添加到选择中,而不是替换当前选择。 我可能需要在选择侦听器中手动执行此操作。但可能有更好(更方便)的方法吗?

I'm using a TableViewer and I want to it perform like when I hold CTRL key. I mean if I click a row, it must be added to selection and not replace current selection.
I probably need to do this manually in selection listener. But may be there's a better (more convinient) way?

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

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

发布评论

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

评论(2

紫轩蝶泪 2024-12-10 02:00:00

Tableviewer 包装了一个 Table,其多选行为是特定于平台的,这意味着您无法禁用它。如果您想实现自己的多选行为,则必须实现自己的表格小部件,该小部件不依赖于 SWT 中的表格小部件。 复合表应该是一个很好的起点......

Tableviewer wraps a Table, which multi-select behavior is platform-specific, that means you cannot disable that. If you want to implement your own multi-select behavior you have to implement your own table-widget which does not depend on the Table widget from SWT. The Composite Table should be a good starting point...

终陌 2024-12-10 02:00:00

如何在构建表时添加 SWT.CHECK 属性,以便通过复选框选择表条目?

How about adding the SWT.CHECK attribute when constructing the table so the table entries will be selected with a checkbox?

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