使用Table
public class Table1 {
public static void creatShellArae(Shell shell) {
Table table = new Table(shell, SWT.BORDER | SWT.FULL_SELECTION);
table.setHeaderVisible(true);
for(int i=0; i < 3; i++) {
TableColumn column = new TableColumn(table, SWT.NONE);
column.setText("column " + i); column.setWidth(100);
}
String[] input = {"a","b","c"};
for(String s : input) {
TableItem item = new TableItem(table, SWT.NONE);
for(int i=0; i < 3; i++) {
item.setText(i, s);
}
}
}
public static void main(String[] args) {
Display display = Display.getDefault();
Shell shell = new Shell(display);
shell.setSize(500, 300);
shell.setLayout(new FillLayout());
creatShellArae(shell);
shell.open();
shell.layout();
while (!shell.isDisposed())
if (!display.readAndDispatch())
display.sleep();
}
}