-2

作为标题,我有这个代码:

    protected void paintComponent(Graphics g) {
        Image image = Toolkit.getDefaultToolkit().getImage("image.png");
        g.drawImage(image, getWidth(), getHeight(), this);
    }

现在我想在每次单击时更改图像JButton

无论如何,单击paintComponentJButton是否可以更改图像?

4

1 回答 1

0

为按钮单击事件添加单击侦听器。调用监听器 onClick() 方法时,更改按钮图像。

于 2013-07-24T19:38:18.137 回答