我正在尝试在编辑开始时更改JTable单元格的边框,如下所示:文本光标出现时。你会怎么做?
答案 0 :(得分:2)
为此,您可以编写自己的TableCellEditor
或使用DefaultTableCellEditor
。
使用第二种方法,您可以使用此代码(table
是您的表格):
for(int i =0;i<table.getColumnCount();i++){
table.getColumnModel().getColumn(i).setCellEditor(getCellEditor());
}
和getCellEditor()
方法的代码:
private TableCellEditor getCellEditor() {
JTextField f = new JTextField();
f.setBorder(BorderFactory.createLineBorder(Color.RED));
return new DefaultCellEditor(f);
}
我将DefaultCellEditor
与JTextField
一起使用,其中包含红色边框。
我觉得它对你很有帮助。