Java-java Swing 中 jButton 的默认图标可以多次改变吗?
不是点击按钮A本身来更新图片, 而是通过点击其他按钮更新按钮A的图标
我的代码: 效果是只能更新一次, 最后我只能用绘图窗口实现显示图像了。
ne = new ImageIcon(fout);
org = new ImageIcon(fin);
newButton.setIcon(org);
orgButton.setIcon(org);
reButton.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
// TODO Auto-generated method stub
int samgry = new Integer(sample.getText());
int quagry = new Integer(quantization.getText());
sampleImage(fin, fout, samgry);
quantize(fout, fout, quagry);
ne = new ImageIcon(fout);
newButton.setIcon(ne);
}
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
可以!在另外的按钮的监听器中添加改变按钮A的图片的语句即可:
B.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent arg0) {
B.setIcon("在此设置你的图片的相关内容");
}
});