2013-04-25 92 views
0

當我按下按鈕時,我想要更改List中所選項目的前景色。如何更改列表中特定項目的前景色?

到目前爲止,我嘗試這樣做:

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

,但它改變了所有項目的前景色,而不僅僅是選擇一個。

任何想法如何解決這個問題?

回答

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


剛注:這不是最有效的方法這樣做,但應該給你基本的想法。

+0

好的,我認爲這是我需要的。我會試試看。謝謝您的幫助! – nidis 2013-04-25 09:33:18

1

列表不支持你想要的。 改爲使用表格和表格項目。 每個表項都代表一行,它有setForeground(Color)方法。

+0

好吧,明白了。謝謝您的幫助! – nidis 2013-04-25 09:33:40

相關問題