当我按下按钮时,我想更改List
中所选项目的前景色。
到目前为止,我试过这个:
list.setForeground(display.getSystemColor(SWT.COLOR_RED));
但它会改变所有项目的前景色,而不仅仅是所选项目的前景色。
任何想法如何解决这个问题?
答案 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();
}
按下按钮之前:
按下按钮后:
请注意:这不是最有效的方法,但应该给你基本的想法。
答案 1 :(得分:1)
列表不支持您想要的内容。
请改用表和表项。
每个表项都代表一行,它有setForeground(Color)
方法。