更改未选中的 CheckBoxMenuItem 的图标
我正在尝试使用 Nimbus 外观和感觉更改 CheckBoxMenuItem 的图标。
UIManager.put("CheckBoxMenuItem[Selected].checkIcon", new ImageIcon(getClass().getResource("/packagename/images/unchecked-icon.png")));
这对于选定的复选框来说效果很好,但是未选定的复选框的状态是什么?
I'm trying to change the Icon of a CheckBoxMenuItem with the Nimbus Look&Feel.
UIManager.put("CheckBoxMenuItem[Selected].checkIcon", new ImageIcon(getClass().getResource("/packagename/images/unchecked-icon.png")));
This works fine for the selected Checkbox, but what is the state of an unselected Box?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有用。只需要使用正确的顺序即可!
It works. Just had to use the right order!