我想更改“鼠标进入”和“鼠标退出”上的按钮的图标图像。

    private void jButton1MouseEntered(java.awt.event.MouseEvent evt) {
    this.jButton1.setBackground(Color.red);
    this.jButton1.setForeground(Color.BLUE)
    }  ;
 private void jButton1MouseExited(java.awt.event.MouseEvent evt) {
       this.jButton1.setBackground(Color.lightGray);
       this.jButton1.setForeground(Color.BLACK);

    }

请建议如何更改图标图像。

最佳答案

参见 setRolloverIcon(Icon) (不需要MouseListener)。

08-04 20:02