删除JTextField单元格编辑器的边框在某些情况下不起作用

时间:2017-11-21 18:48:33

标签: java swing jtable

由于出现的问题,这个问题是对此问题的跟进:Remove cell editor border in JTable (Windows LaF)

我遇到来自JTextArea的{​​{1}}意外行为,当它已经在桌面上时,修改了它的边界。边界根本不是视觉更改。

即使在致电:

之后

DefaultCellEditor#getComponent()

然后就这样做了:

textField.setBorder(BorderFactory.createCompoundBorder(null, BorderFactory.createEmptyBorder(1, 1, 1, 1)));

控制台显示System.out.println(textField.getBorder());,表示边框已在内部更改。但是,这并没有在视觉上反映出来,我感到很困惑。

我的测试班:

javax.swing.border.CompoundBorder@6aff616

最后,这是一个令人讨厌的解决方法,使其工作但不可行:

public class TableStackOverflow extends javax.swing.JFrame {

    public TableStackOverflow() {
        initComponents();
        prepareTable();
    }

    public void prepareTable() {
        for (int i = 0; i < table.getColumnCount(); i++) {
            Class columnClass = table.getColumnClass(i);
            DefaultCellEditor defaultEditor = (DefaultCellEditor) table.getDefaultEditor(columnClass);
            if (defaultEditor.getComponent() instanceof JTextField) {
                JTextField textField = (JTextField) defaultEditor.getComponent();
                textField.setFont(new Font("Segoe UI", Font.PLAIN, 12));
                textField.setBorder(BorderFactory.createCompoundBorder(null, BorderFactory.createEmptyBorder(1, 1, 1, 1)));
                System.out.println(textField.getBorder());

            }
            defaultEditor.setClickCountToStart(1);
        }
    }

    private void initComponents() {    
        scrPane = new javax.swing.JScrollPane();
        table = new org.jdesktop.swingx.JXTable();

        setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);

        table.setModel(new javax.swing.table.DefaultTableModel(
            new Object [][] {
                {null, null},
                {null, null}
            },
            new String [] {
                "First", "Second"
            }
        ) {
            Class[] types = new Class [] {
                java.lang.String.class, java.lang.String.class
            };

            public Class getColumnClass(int columnIndex) {
                return types [columnIndex];
            }
        });
        table.setSelectionBackground(new java.awt.Color(223, 238, 249));
        table.setSelectionForeground(new java.awt.Color(0, 0, 0));
        scrPane.setViewportView(table);

        getContentPane().add(scrPane, java.awt.BorderLayout.CENTER);

        pack();
    }                      

    public static void main(String args[]) {
        try {
            javax.swing.UIManager.setLookAndFeel("com.sun.java.swing.plaf.windows.WindowsLookAndFeel");
        } catch (ClassNotFoundException | InstantiationException | IllegalAccessException | javax.swing.UnsupportedLookAndFeelException ex) {
        }

        java.awt.EventQueue.invokeLater(() -> {
            new TableStackOverflow().setVisible(true);
        });
    }

    private javax.swing.JScrollPane scrPane;
    private org.jdesktop.swingx.JXTable table;

最后,一些更好的工作(感谢Camickr!)

public void prepareTable() {
    for (int i = 0; i < table.getColumnCount(); i++) {
        DefaultCellEditor defaultEditor = (DefaultCellEditor) table.getDefaultEditor(table.getColumnClass(i));
        if (defaultEditor.getComponent() instanceof JTextField) {
            JTextField textField = new JTextField();
            textField.setFont(new Font("Segoe UI", Font.PLAIN, 12));
            textField.setBorder(BorderFactory.createCompoundBorder(null, BorderFactory.createEmptyBorder(1, 1, 1, 1)));
            defaultEditor = new DefaultCellEditor(textField);
            table.setDefaultEditor(table.getColumnClass(i), defaultEditor);
        }
        defaultEditor.setClickCountToStart(1);
    }
}

1 个答案:

答案 0 :(得分:2)

DefaultCellEditor defaultEditor = (DefaultCellEditor) table.getDefaultEditor(columnClass);
System.out.println(defaultEditor.getClass());

将上述语句添加到您的代码中,您将看到默认编辑器是GenericEditor,它是JTable的内部类。

此编辑器为JTable中的使用添加了额外的功能。

它所做的一件事就是管理边境。如果发现错误,则为红色边框&#34;在编辑器中显示。否则边框设置为默认的&#34;黑色边框&#34;。

  

最后,这是一个令人讨厌的解决方法,使其工作但不可行:

您需要使用DefaultCellEditor或创建自定义编辑器。

您可以扩展JTable.GenericEditor类并覆盖getTableCellEditor(...)方法。这是将边框重置为默认黑色边框的方法。

或许您可以将getCellEditor(...)方法覆盖到表格中以获取编辑器,然后删除边框。

另一种方法是向表中添加PropertyChangeListener。然后,每当编辑一个单元格时,您将获得一个事件,这样您就可以获得活动编辑器并删除其边框:

@Override
public void propertyChange(PropertyChangeEvent e)
{
    //  A cell has started/stopped editing

    if ("tableCellEditor".equals(e.getPropertyName()))
    {
        if (table.isEditing())
            // add your code here
    }
}

另外,为什么要使用CompoundBorder来创建EmptyBorder?