table.addSelectionListener(new SelectionAdapter()
{
public void widgetSelected(SelectionEvent e)
{
if(table.getSelectionIndex() != -1)
{
System.out.println(table.getSelectionIndex());
TableItem item = table.getItem(table.getSelectionIndex());
System.out.println(item.toString());
}
else
{}
}
});
,當我在我的表中的任意單元格點擊,只有該行的第一個單元格被選中,返回,不完全是細胞如何選擇SWT表的一個單元格
請告訴我,我怎麼能選擇並正是細胞,我選擇
請參閱
我選擇了第3行的影像獲取項目,但它返回第一列
的表項