将setIcon用于JLabel时,它不起作用

时间:2015-11-16 14:17:17

标签: java user-interface jlabel imageicon

当我将背景颜色设置为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);
    }
}

0 个答案:

没有答案