2012-10-17 74 views
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** 
     } 
} 

回答

3

不,這是不可能的。有一個錯誤報告here

+1

但是menuitem沒有setForeground方法。 – Selin

+0

@selin你是對的,看到編輯答案。 – Baz

+0

非常感謝 – Selin

-1
item1.setForeground(Color.red); 

ü意味着這一個?

相關問題