Disable JButton focus border

前端 未结 5 1043
说谎
说谎 2020-12-15 16:38

I have a problem with JButton in Java. Basically, I want to disable the button\'s border (the button is added to JDesktopPane ).

Here is my code :

          


        
5条回答
  •  粉色の甜心
    2020-12-15 17:11

    That is not border. It's focus. You can remove it using:

    jButton1.setFocusPainted(false);
    

提交回复
热议问题