this image shows the box
当我运行JFrame时,在聚焦的JButton中的文本周围有一个小框(请参见下图)
JFrame
JButton
如何删除该框?
此属性称为focusPainted,您可以通过以下方式将其禁用:jbutton.setFocusPainted(false);
focusPainted
jbutton.setFocusPainted(false);