swt table 구현 표 사용 하기

1272 단어 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();

    }
}

좋은 웹페이지 즐겨찾기