Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以将 JButton 的形状从矩形更改为圆形?
Sean Cogan 提供的链接就是您所需要的。如果您想要简而言之,请使用设置图像(圆形或任何您希望按钮看起来相似的形状)setIcon,然后在 JButton(button1)上设置这些值 -
setIcon
button1.setContentAreaFilled(false); button1.setFocusPainted(false); button1.setBorderPainted(false);
您还可以在按钮上使用图像。