我有一个如下所示的表格,但是当表格失去焦点时(例如单击某个按钮),选择也会丢失。如何避免这种情况?
Table table = new Table(group, SWT.BORDER | SWT.FULL_SELECTION);
table.setLinesVisible(true);
table.setHeaderVisible(true);
table.addSelectionListener(new SelectionAdapter() {
@Override
public void widgetSelected(SelectionEvent arg0) {
onSelection();
}
});
选择的行:
选择丢失: