Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想要做的是从所选行中获取所有 tableItems。但我发现 tableItems 存储在索引中(如在 arrary 中),而不是像给出行和列并将其存储在表的特定单元格(行、列)中。
所以我必须遍历所有下一行直到表的末尾,然后遍历所有行直到选定的行才能找到我需要的 tableItem。
请参阅图片以了解我的问题。彩色行是选定的行。如果我想从 'a' 到 'b' 然后 'c' 等等完整的行,我已经完成了所有下一行。
所以现在的问题是如何获得 swt.table 中存在的总行数
SWT TableItem 是表中的一行。您可以使用它的 getText(int index) 方法获取所选 TableItem 的索引列的内容(第一列从 0 开始)。
因此,TableItems 的数量是总行数。