我想在用户按下/释放按钮时更改JButton图标。
选择JButton时的图标图像
取消选择JButton并释放JButton时的图标图像:
我该怎么做?
答案 0 :(得分:13)
JButton b = new JButton(Icon x); // Create button with normal icon
b.setIcon(Icon x);
b.setDisabledIcon(Icon x);
b.setPressedIcon(Icon x);
b.setSelectedIcon(Icon x);
b.setDisabledSelectedIcon(Icon x);
REF: http://www.leepoint.net/notes-java/GUI/components/20buttons/23buttonicons.html