如下所示,在“继续”按钮中,“继续”一词旁边有一个边框。关于如何解决问题的任何建议或关于导致它的原因的任何解释?
this.continueButton = new JButton("Continue");
this.continueButton.setBounds(135, 258, 95, 25);
this.continueButton.setForeground(new Color(17,138,203));
this.continueButton.setBackground(Color.WHITE);
this.continueButton.addMouseListener(mmlc);
this.continueButton.addActionListener(this);
add(this.continueButton);
this.exitButton = new JButton("Exit");
this.exitButton.setBackground(Color.WHITE);
this.exitButton.setBounds(242, 258, 95, 25);
this.exitButton.setForeground(new Color(17,138,203));
this.exitButton.addMouseListener(mmlc);
this.exitButton.addActionListener(this);
add(this.exitButton);`
答案 0 :(得分:1)
默认情况下按钮处于焦点状态,您可以禁用通过jButton.setFocusPainted(false);
答案 1 :(得分:0)
您可以删除按钮的焦点,
jbutton.setFocusable(false);