Java SWT 检查列表框
我在 Java SWT 中找不到 CheckedListBox。请指出一种扩展 List
以支持复选框的方法。
I could not find CheckedListBox in Java SWT. Please, point me to a way of extending List
to support checkboxes.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
只需将 SWT.CHECK 添加到您的 TableViewer 中即可:
Just add SWT.CHECK to your TableViewer:
我认为你可以尝试使用表格而不是列表。看看这个片段
I think you can try to use table instead of list. Look at this snippet
使用 JFace CheckboxTableViewer:
Use JFace CheckboxTableViewer:
我在上面的代码片段中添加了一个 selectAll 按钮,并添加了以下事件
,但复选框未选中?
i've added a button selectAll on the above snippet and added the following event
But the checkboxes are not selected?