4

我正在使用 Java 和 SWT。我已将菜单(右键单击)添加到系统托盘。我想更改菜单项上文本的颜色。可能吗?我找不到任何解决方案。

 TrayItem item = new TrayItem(tray, SWT.NONE);
 item.addListener(SWT.MenuDetect, new Listener() {
      public void handleEvent(org.eclipse.swt.widgets.Event event) {
           Menu menu = new Menu(shell, SWT.POP_UP);
           MenuItem item1 = new MenuItem(menu, SWT.NONE);
           item1.setText("Settings");   // **i want to change color of the text**
      }
}
4

2 回答 2

3

不,这还不可能。这里有一个错误报告。

于 2012-10-17T08:27:23.133 回答
-1
item1.setForeground(Color.red);

你是说这个吗??

于 2012-10-17T08:23:24.320 回答