当我将背景颜色设置为null
时,使用setIcon
无效,但setText
仍然有效。原因是什么,我该如何解决?
public void actionPerformed(ActionEvent e) {
if(e.getSource()==arrowr){
Reset();
ImageIcon icon = new ImageIcon("queen.bmp");
b[1][1].setBackground(null);
b[1][1].setIcon(icon);
}
}