我遵循此example to create a simple test with a Table
where the foreground color was changed。这可以按预期工作。
但是,如果我将示例更改为使用Tree
而不是Table
,则在选择项目时不会保留前景色。
在此代码段中,按下按钮时所选项目的前景色会更改为红色:
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 Tree table = new Tree(shell, SWT.BORDER | SWT.MULTI);
table.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true));
for (int i = 0; i < 10; i++)
{
TreeItem item = new TreeItem(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<TreeItem> allItems = new ArrayList<>(Arrays.asList(table.getItems()));
TreeItem[] selItems = table.getSelection();
for (TreeItem item : selItems)
{
item.setForeground(display.getSystemColor(SWT.COLOR_RED));
allItems.remove(item);
}
for (TreeItem item : allItems)
{
item.setForeground(display.getSystemColor(SWT.COLOR_LIST_FOREGROUND));
}
}
});
shell.pack();
shell.open();
while (!shell.isDisposed())
{
if (!display.readAndDispatch())
display.sleep();
}
display.dispose();
}
但如果我们取消选择该项目,我们可以看到前景色实际发生了变化:
是否有人知道为什么这会在Table
中正常运行,而在Tree
却无效?有没有办法使这项工作?
答案 0 :(得分:0)
这似乎与Windows上的表和树之间显示所选项目的方式略有不同。可能唯一的解决方法是让你的应用程序绘制树项目,如果你真的想要覆盖默认的选择颜色。
另请参阅此处的自定义绘图表和树项文章:https://www.eclipse.org/articles/article.php?file=Article-CustomDrawingTableAndTreeItems/index.html