我的JButton在Java中的问题

时间:2015-12-21 11:40:08

标签: java swing user-interface jbutton

如下所示,在“继续”按钮中,“继续”一词旁边有一个边框。关于如何解决问题的任何建议或关于导致它的原因的任何解释?

enter image description here

    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);`

2 个答案:

答案 0 :(得分:1)

默认情况下按钮处于焦点状态,您可以禁用通过jButton.setFocusPainted(false);

绘制的焦点方块

答案 1 :(得分:0)

您可以删除按钮的焦点,

jbutton.setFocusable(false);