如何更改列表中特定项目的前景色?

时间:2013-04-25 08:23:58

标签: java swt

当我按下按钮时,我想更改List中所选项目的前景色。

到目前为止,我试过这个:

list.setForeground(display.getSystemColor(SWT.COLOR_RED));

但它会改变所有项目的前景色,而不仅仅是所选项目的前景色。

任何想法如何解决这个问题?

2 个答案:

答案 0 :(得分:2)

使用List执行此操作需要自定义绘图。您最好使用Table代替({甚至TableViewer,具体取决于您的要求)。以下是执行所需操作的表的示例:

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

    final Table table = new Table(shell, SWT.BORDER | SWT.MULTI);
    table.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true));

    for (int i = 0; i < 10; i++)
    {
        TableItem item = new TableItem(table, SWT.NONE);
        item.setText("item " + i);
    }

    Button button = new Button(shell, SWT.PUSH);
    button.setText("Color selected");

    button.addListener(SWT.Selection, new Listener()
    {
        @Override
        public void handleEvent(Event arg0)
        {
            List<TableItem> allItems = new ArrayList<>(Arrays.asList(table.getItems()));
            TableItem[] selItems = table.getSelection();

            for (TableItem item : selItems)
            {
                item.setForeground(display.getSystemColor(SWT.COLOR_RED));
                allItems.remove(item);
            }

            for (TableItem item : allItems)
            {
                item.setForeground(display.getSystemColor(SWT.COLOR_LIST_FOREGROUND));
            }
        }
    });

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

按下按钮之前:

enter image description here

按下按钮后:

enter image description here


请注意:这不是最有效的方法,但应该给你基本的想法。

答案 1 :(得分:1)

列表不支持您想要的内容。 请改用表和表项。 每个表项都代表一行,它有setForeground(Color)方法。