1

Is there any way to set the SWT table column foreground and/or background colour?Or SWT table header foreground and background colour? setForeground/setBackground methods are not available on org.eclipse.swt.widgets.TableColumn

4

2 回答 2

2

不,不可能在 TableColumn 上设置背景/前景(取决于本机支持)。您可能必须自己自定义绘制标题。使默认标题不可见并在单独的画布中绘制您自己的标题,您需要使其与 ofTableColumn和滚动保持同步Table

org.eclipse.swt.widgets.Table.setHeaderVisible(boolean)
于 2013-07-10T14:53:11.903 回答
0

中有setBackground()setForeground()方法TableItem

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

是一个带有样式示例的优秀教程。


以下是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();
}

在此处输入图像描述

于 2013-07-08T13:44:43.887 回答