如何删除JButton内的文本框?

问题描述 投票:0回答:1

this image shows the box

当我运行JFrame时,在聚焦的JButton中的文本周围有一个小框(请参见下图)

如何删除该框?

java swing focus jbutton
1个回答
1
投票

此属性称为focusPainted,您可以通过以下方式将其禁用:jbutton.setFocusPainted(false);

© www.soinside.com 2019 - 2024. All rights reserved.