10

当您单击一个单元格时,我试图让我的表格选择整行(这可以通过关闭列选择来完成),但是,我不希望您单击的特定单元格周围的额外粗边框被突出显示。我希望这会很容易,但显然它涉及渲染器,所以我做了很多研究,我能得到的最接近的是:

    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()什么也没做。

这段代码的问题是:

  1. 它仅适用于底部 vColIndex 指定的一列。显然,我希望将其应用于所有列,因此单击一个单元格中的一个单元格会突出显示整行。我可以创建一个 for 循环来将其更改为每个单元格,但我认为有更好的方法可以一次更改所有列的 cellRenderer。

  2. setForegroundColor()用于更改文本,但setBackgroundColor()对单元格背景没有任何作用。我希望它像属性所暗示的那样实际更改背景颜色。

    • #2的解决方案:this.setOpaque(true);在分配背景色之前使用。
  3. 当渲染器工作时,它只在单个单元格上工作。如何让它为行中的所有单元格着色?

    • #3的解决方案:我想通了!如果您启用行选择 ( )而不是 using hasFocus(),它只影响单个单元格,table.setRowSelectionAllowed(true)那么您将颜色更改放在if(isSelected)语句中。然后整行被认为是选中的,它为所有单元格着色!

3 是大的,但如果有人知道 #1 或者可以向我解释为什么它的设计使得您一次只能将渲染器应用于一列,那将不胜感激。

4

3 回答 3

15

太直接了就加行

tablename.setSelectionBackground(Color.red);

就我而言

jtbillItems.setSelectionBackground(Color.red);
于 2012-05-24T18:13:19.883 回答
5

教程文章概念:编辑器和渲染器解释说,“单个单元格渲染器通常用于绘制包含相同类型数据的所有单元格”,如模型getColumnClass()方法返回的那样。

prepareRenderer()或者,对所有单元格调用override以选择性地更改行的外观。这个例子比较了这两种方法,文章表格行渲染扩展了该方法的多功能性。

于 2012-04-05T02:34:48.650 回答
0

对于第二个问题,您可以尝试 setSelectionBackground(Color) 和 setSelectionForeGround(Color) 方法。我不确定您如何解决第一个问题。最后一个建议您可以使用一些摇摆设计器插件,例如 JBuilder。这会很有帮助。

于 2012-04-04T19:32:43.807 回答