有什么方法可以设置SWT表列的前景色和/或背景色?还是SWT表头的前景色和背景色? setForeground / setBackground方法在org.eclipse.swt.widgets.TableColumn上不可用

最佳答案

setBackground()中有setForeground()TableItem方法。

如果您希望能够更有效地自定义项目,则建议使用TableViewer

Here是一个很好的教程,带有样式示例。



这是带有彩色列的简单Table的一些示例代码:

public static void main(String[] args)
{
    Display display = new Display();
    final Shell shell = new Shell(display);
    shell.setText("StackOverflow");
    shell.setLayout(new FillLayout());

    Table table = new Table(shell, SWT.NONE);
    table.setHeaderVisible(true);

    for(int col = 0; col < 3; col++)
    {
        TableColumn column = new TableColumn(table, SWT.NONE);
        column.setText("Column " + col);
    }

    Color color = display.getSystemColor(SWT.COLOR_YELLOW);

    for(int row = 0; row < 10; row++)
    {
        TableItem item = new TableItem(table, SWT.NONE);

        for(int col = 0; col < 3; col++)
        {
            item.setText(col, "Item " + row + " Column " + col);

            if(col == 1)
            {
                item.setBackground(col, color);
            }
        }
    }

    for(int col = 0; col < 3; col++)
    {
        table.getColumn(col).pack();
    }

    shell.pack();
    shell.open();
    while (!shell.isDisposed())
    {
        if (!display.readAndDispatch())
            display.sleep();
    }
    display.dispose();
}

关于java - 设置SWT表列前景色,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/17528136/

10-10 09:24