我已经浏览了Java documentation for Swing look and feel的代码,但是我找不到关于如何修改JButtons的默认外观的问题.
我想在Swing中为JButton设置圆角/弯角.
有没有办法实现这个目标?
我应该使用哪些功能和值?
我使用了以下声明:
generateButton.setBorder(new RoundedBorder(20));
我在Stack Overflow问题Rounded Swing JButton using Java中找到的RoundedBorder代码:
I do get a black rounded border outline around the original button. MY button has orange background. But it doesn’t remove the orange area outside the rounded corners. Also I do not want the black border.
我该怎么办呢?
最佳答案 您可以轻松使用Java Swing主题,如
Nimbus.
或者查看Stack Overflow问题Make a button round.