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.
如果你不介意的话,我想问一件非常琐碎的事情。JRadioButton 类下是否有一种方法允许更改单选按钮中勾选的“圆圈”背景的颜色,而不是单选按钮本身的颜色。我想要纯白色,而不是默认的浅蓝色渐变。提前感谢先生们。
您可以设置自己的图标,也许从 java 库或网络中获取该图标,然后使用 photoshop 或其他工具编辑它们并设置您的图标
jrb.setIcon("source"); jrb.setSelectedIcon("source"); jrb.setDisaybledIcon("source"); jrb.setRolloverIcon("source");