将JFace TableViewer添加到SWT表

时间:2012-08-23 05:34:49

标签: java swt jface tableviewer

在一个工具中,我正在研究,我有一张桌子,我这样添加:

public void addTable() {

    table = new Table(this, SWT.BORDER | SWT.MULTI | SWT.FULL_SELECTION);

    griddata = new GridData(GridData.FILL_BOTH);
    griddata.horizontalSpan = 2;

    table.setLayoutData(griddata);
    table.setHeaderVisible(true);

    final TableColumn tc1 = new TableColumn(table, SWT.LEFT);
    final TableColumn tc2 = new TableColumn(table, SWT.CENTER);
    final TableColumn tc3 = new TableColumn(table, SWT.CENTER);

    tc1.setText("ID");
    tc2.setText("Firstname");
    tc3.setText("Lastname");

    tc1.setWidth(30);
    tc2.setWidth(100);
    tc3.setWidth(100);

    final TableItem item1 = new TableItem(table, SWT.NONE);
    item1.setText(new String[] { "ABC", "Hatton", "Kentucky" });
    final TableItem item2 = new TableItem(table, SWT.NONE);
    item2.setText(new String[] { "DEF", "Warner", "Ohio" });
}

运行良好,但是现在,我想添加一个JFace表查看器,但是关于它的文档似乎只与TableLayouts有关,而不是表。我想,TableViewer会被添加到表格中吗?

1 个答案:

答案 0 :(得分:0)

在此期间想出来。这只是对第一行的改变,如下所示:

        TableViewer viewer = new TableViewer(this, SWT.BORDER | SWT.MULTI | SWT.FULL_SELECTION); 
    table = viewer.getTable();

这样,你可以像以前那样签订合同。