How do I clear an icon set on a JButton?
Created May 4, 2012
John Zukowski
To remove the icon displayed on a JButton, call the setIcon() method with an argument of null:
aButton.setIcon(null);
Created May 4, 2012
To remove the icon displayed on a JButton, call the setIcon() method with an argument of null:
aButton.setIcon(null);