1
我的代碼:我無法爲單個細胞選定樣式在一個DefaultTableModel
Style selectedStyle = new Style();
selectedStyle.setBgColor(0xff0055);
Style unselectedStyle = new Style();
unselectedStyle.setBgColor(0x004576);
Table.setSelectedStyle(selectedStyle);
table.setUnselectedStyle(unselectedStyle);
它很容易弄清楚,這個代碼適用於該表作爲一個整體組成部分,但我想不通了解如何使它適用於單個單元格。
在此先感謝。
謝謝,伊爾給它一個鏡頭。 – Glenncito