如何使JButton只在活动时才有边框

时间:2018-02-20 10:37:06

标签: java swing jbutton

我正在使用Java Swing制作绘画工具。我在右侧有一个面板,显示所有颜色,让用户在它们之间进行选择。我正在尝试在当前所选颜色的按钮周围出现边框。

因为我在选择颜色时会在按钮周围创建永久边框。

我正在努力解决的问题是边界是暂时的。我的意思是当用户按下另一个按钮时,当IE不再使用该颜色时,我希望它消失。这就是我的代码看起来的样子

 final JButton blueKnapp = new JButton();
 blueKnapp.setBackground(Color.BLUE);
 blueKnapp.setSize(20, 30 );
 this.add(blueKnapp);

 blueKnapp.addActionListener(new ActionListener(){
    @Override

    public void actionPerformed(ActionEvent arg0) {
         blueKnapp.setBorder(new LineBorder(Color.BLACK, 3));

        parent.changeColor(Color.BLUE);
    }
 });

1 个答案:

答案 0 :(得分:0)

正如Andrew Thompson指出的那样,覆盖paint()方法是不好的做法,而应该使用paintComponent()方法完成。 也只是使用焦点绘画可能会更好地完成同样的工作。

您可以做的是覆盖按钮的paintComponent方法,并添加对按钮焦点的检查。如果它具有焦点,则将边框设置为绘制,否则将其设置为不绘制。 可能看起来像这样:

JButton blueKnapp = new JButton()
{
    @Override
    public void paintComponent(Graphics g)
    {
        super.paintComponent(g);
        this.setBorderPainted(this.hasFocus());
    }
};

blueKnapp.addActionListener((evt) -> {
    // set the border to either black or blue randomly.
    // replace this with your "color picker color" probably.
    blueKnapp.setBorder(new LineBorder(Math.random() < 0.5 ? Color.BLACK : Color.BLUE, 3));
});