gpt4 book ai didi

java - 在 SWT 中获取 CheckBoxTableViewer 中选中项的行索引

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:16:44 25 4
gpt4 key购买 nike

我正在我的项目中实现 SWT CheckBoxTableViewer。有人可以告诉我如何获取所选选中项的行索引吗?

最佳答案

像这样:

   final TableItem [] items = tableViewer.getTable().getItems();
for (int i = 0; i < items.length; ++i) {
if (items[i].getChecked())
... handle checked
}

如果您只想要选中的对象(使用类似于上述的循环),您可以使用 CheckBoxTableViewer.getCheckedElements()

关于java - 在 SWT 中获取 CheckBoxTableViewer 中选中项的行索引,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18979870/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com