SWT TableViewer 不带 Ctrl 的多选
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
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...
如何在构建表时添加 SWT.CHECK 属性,以便通过复选框选择表条目?
How about adding the SWT.CHECK attribute when constructing the table so the table entries will be selected with a checkbox?