JTableが使用するBooleanCellEditorの背景色を変更
Total: 7731
, Today: 1
, Yesterday: 2
Posted by aterai at
Last-modified:
概要
JTable
がデフォルトで使用するBooleanCellEditor
の背景色を選択色に変更します。
Screenshot
Advertisement
サンプルコード
JTable table = new JTable(model) {
@Override public Component prepareEditor(
TableCellEditor editor, int row, int column) {
Component c = super.prepareEditor(editor, row, column);
if (c instanceof JCheckBox) {
JCheckBox b = (JCheckBox) c;
b.setBackground(getSelectionBackground());
b.setBorderPainted(true);
}
return c;
}
};
View in GitHub: Java, Kotlin解説
- 上: デフォルト
- セルをクリックして編集状態になると
CellEditor
として背景色がJTable
と同じ白色になるJCheckBox
が表示される
- セルをクリックして編集状態になると
- 下:
JTable#getSelectionBackground()
BooleanCellEditor
として使用するJCheckBox
の背景色が常にJTable#getSelectionBackground()
になるようにJTable#prepareEditor(...)
メソッドをオーバーライド
参考リンク
JTable#prepareEditor(...) (Java Platform SE 8)