选择后如何更改JButton Icon?

时间:2012-09-17 22:58:45

标签: java swing applet icons jbutton

我想在用户按下/释放按钮时更改JButton图标。

选择JButton时的图标图像

enter image description here

取消选择JButton并释放JButton时的图标图像:

When unselected/release

我该怎么做?

1 个答案:

答案 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