gpt4 book ai didi

java - 更改未选中的 CheckBoxMenuItem 的图标

转载 作者:行者123 更新时间:2023-12-01 05:32:36 25 4
gpt4 key购买 nike

我正在尝试使用 Nimbus 外观和感觉更改 CheckBoxMenuItem 的图标。

    UIManager.put("CheckBoxMenuItem[Selected].checkIcon", new ImageIcon(getClass().getResource("/packagename/images/unchecked-icon.png")));

这对于选定的复选框来说效果很好,但是未选定的框的状态是什么?

最佳答案

它有效。只需使用正确的顺序即可!

UIManager.put("CheckBoxMenuItem.checkIcon", new ImageIcon(getClass().getResource("/package/images/unchecked.png")));
UIManager.put("CheckBoxMenuItem[Selected].checkIcon", new ImageIcon(getClass().getResource("/package/images/checked.png")));

关于java - 更改未选中的 CheckBoxMenuItem 的图标,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8729485/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com