I need to figure out how to set a custom icon for a selected checkbox via the UIManager
This works for un-selected checkboxes:
UIManager.put("CheckBox.icon", new ImageIcon("../images/unselectedCheckBoxIcon.png")));
how to change the icon when it is selected?
I don't know the UIManager property for a selected checkbox icon and using the setSelectedIcon on the checkbox object it self does not seem to work:
checkbox.setSelectedIcon(new ImageIcon("../images/selectedCheckBoxIcon.png"));
Thanks for any ideas how to solve this!!