2009-07-29 50 views

回答

5

我不認爲有直接的方法來做到這一點。但作爲解決方法,請嘗試下面的方法。我曾經使用過類似的東西。

public void moveTableItem(Table table, int from, int to) { 
    TableItem item2Move = table.getItem(from); 
    TableItem newTableItem = new TableItem(table, SWT.NONE, to); 
    newTableItem.setText(item2Move.getText()); 
    // You may want to clone the entire item here; and not just the text. 

    // Dispose off, the old item. 
    item2Move.dispose(); 

} 
+0

我喜歡那個聲音!我會嘗試一下。謝謝。 – 2009-07-30 12:39:26