gpt4 book ai didi

java - 如何查找swt表的行号

转载 作者:行者123 更新时间:2023-12-02 04:28:58 24 4
gpt4 key购买 nike

有人请回答我的问题吗?我有一个 swt 表,出于我的项目目的,我需要知道表格光标所在的行号。

最佳答案

simple method use on table: table.getItemCount()

//create a Table

Table table = new Table(parent, SWT.BORDER | SWT.FULL_SELECTION|SWT.CHECK);

//TableColumn Object:tblclmnNewColumn_1

TableColumn tblclmnNewColumn_1 = new TableColumn(table, SWT.LEFT);
tblclmnNewColumn_1.addSelectionListener(new SelectionAdapter() {
@Override
public void widgetSelected(SelectionEvent e) {
//click on this column
System.out.println("Row Index:"+table.getSelectionIndex());
System.out.println("Total Row Count:"+table.getItemCount());
}
});

关于java - 如何查找swt表的行号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31750810/

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