0

由于我们一开始就走错了路,我再问一次,之前的问题已删除。请检查一下,JTextPane 的边框与 JTextArea 的边框不一样,默认情况下不是这样:

所以我需要一个看起来与 JTextArea 完全一样的 JTextPane。

我将 JTextPane 的边框设置为 new JTextArea().getBorder();。看起来它应该,但是,焦点没有被正确绘制......我该如何解决它?

我在这里使用 Nimbus,如果有帮助的话......

SSCCE:

import javax.swing.BoxLayout;
import javax.swing.JFrame;
import javax.swing.JTextArea;
import javax.swing.JTextPane;
import javax.swing.UIManager;
import javax.swing.UnsupportedLookAndFeelException;
import javax.swing.UIManager.LookAndFeelInfo;


public class Main
{
public static void main(String[] args)
{
    for (LookAndFeelInfo info : UIManager.getInstalledLookAndFeels())
    {
        if ("Nimbus".equals(info.getName()))
        {
            try
            {
                UIManager.setLookAndFeel(info.getClassName());
            }
            catch (ClassNotFoundException | InstantiationException | IllegalAccessException | UnsupportedLookAndFeelException e)

            {
                System.out.println("No Nimbus!");
            }

            break;
        }
    }

    JFrame a = new JFrame("Test");
    a.setSize(200, 400);
    a.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    a.getContentPane().setLayout(new BoxLayout(a.getContentPane(), BoxLayout.Y_AXIS));

    JTextPane[] b = new JTextPane[5];

    for (int i = 0; i < 5; i++)
    {
        b[i] = new JTextPane();
        b[i].setBorder(new JTextArea().getBorder());
        b[i].setText(Integer.toString(i));
        a.getContentPane().add(b[i]);
    }

    a.setVisible(true);
}
}

我已将边框设置为与 JTextArea 上的相同,但焦点未正确绘制或移动。如果您注释掉该行,则不会有任何边框。

4

1 回答 1

3

如果您添加一个强制重绘的焦点侦听器,那么奇怪的行为就会消失。

例子:

for (int i = 0; i < 5; i++) {
    final JTextPane b = new JTextPane();
    b.setBorder(new JTextArea().getBorder());
    b.addFocusListener(new FocusListener() {

        @Override
        public void focusGained(FocusEvent arg0) {
            b.repaint();
        }

        @Override
        public void focusLost(FocusEvent arg0) {
            b.repaint();
        }

    });
    b.setText(Integer.toString(i));
    a.getContentPane().add(b);
}

这似乎是一个黑客修复,但我不确定为什么会这样。

于 2013-10-18T18:07:31.493 回答