3

我想在鼠标进入和鼠标退出时更改按钮的图标图像。

    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);

    }                                    

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

4

1 回答 1

7

setRolloverIcon(Icon)(不需要MouseListener)。

于 2012-07-18T08:00:43.273 回答