当您单击一个单元格时,我试图让我的表格选择整行(这可以通过关闭列选择来完成),但是,我不希望您单击的特定单元格周围的额外粗边框被突出显示。我希望这会很容易,但显然它涉及渲染器,所以我做了很多研究,我能得到的最接近的是:
JTable contactTable = new JTable(tableModel);
contactTable.setCellSelectionEnabled(true);
contactTable.setColumnSelectionAllowed(false);
contactTable.setRowSelectionAllowed(false);
contactTable.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
// This renderer extends a component. It is used each time a
// cell must be displayed.
class MyTableCellRenderer extends JLabel implements TableCellRenderer {
// This method is called each time a cell in a column
// using this renderer needs to be rendered.
public Component getTableCellRendererComponent(JTable table, Object value,
boolean isSelected, boolean hasFocus, int rowIndex, int vColIndex) {
// 'value' is value contained in the cell located at
// (rowIndex, vColIndex)
if (isSelected) {
// cell (and perhaps other cells) are selected
}
if (hasFocus) {
// this cell is the anchor and the table has the focus
this.setBackground(Color.blue);
this.setForeground(Color.green);
} else {
this.setForeground(Color.black);
}
// Configure the component with the specified value
setText(value.toString());
// Set tool tip if desired
// setToolTipText((String)value);
// Since the renderer is a component, return itself
return this;
}
// The following methods override the defaults for performance reasons
public void validate() {}
public void revalidate() {}
protected void firePropertyChange(String propertyName, Object oldValue, Object newValue) {}
public void firePropertyChange(String propertyName, boolean oldValue, boolean newValue) {}
}
int vColIndex = 0;
TableColumn col = contactTable.getColumnModel().getColumn(vColIndex);
col.setCellRenderer(new MyTableCellRenderer());
我从一个示例中复制了渲染器,只更改了 hasFocus() 函数以使用我想要的颜色。设置颜色isSelected()
什么也没做。
这段代码的问题是:
它仅适用于底部 vColIndex 指定的一列。显然,我希望将其应用于所有列,因此单击一个单元格中的一个单元格会突出显示整行。我可以创建一个 for 循环来将其更改为每个单元格,但我认为有更好的方法可以一次更改所有列的 cellRenderer。
setForegroundColor()
用于更改文本,但setBackgroundColor()
对单元格背景没有任何作用。我希望它像属性所暗示的那样实际更改背景颜色。- #2的解决方案:
this.setOpaque(true);
在分配背景色之前使用。
- #2的解决方案:
当渲染器工作时,它只在单个单元格上工作。如何让它为行中的所有单元格着色?
- #3的解决方案:我想通了!如果您启用行选择 ( )而不是 using
hasFocus()
,它只影响单个单元格,table.setRowSelectionAllowed(true)
那么您将颜色更改放在if(isSelected)
语句中。然后整行被认为是选中的,它为所有单元格着色!
- #3的解决方案:我想通了!如果您启用行选择 ( )而不是 using
3 是大的,但如果有人知道 #1 或者可以向我解释为什么它的设计使得您一次只能将渲染器应用于一列,那将不胜感激。