悬停时如何从中心放大 Jbutton?

How can i enlarge a Jbutton from the center when it's hover?

如何在悬停时从中心放大 Jbutton?我使用方法 setSize(),但按钮向右和向下放大。我想让它向所有方向扩大。 JButton 位于带有 flowLayout 的 JPanel 中。 谢谢

您应该为按钮使用透明边框,将鼠标悬停在按钮上时,将 border-size 设置为 0。

这是按钮边框的初始代码:

JButton btn = ...;
Color borderColor = new Color(0, 0, 0, 0,); //Transparant border
btn.setBorder(BorderFactory.createLineBorder(borderColor, 4));

悬停时,你应该将边框设置为:

btn.setBorder(BorderFactory.createLineBorder(borderColor, 0));

这应该是一个快速的解决方法。