如何更改按钮的图标图像上的鼠标输入/鼠标离开?(How to change icon image o

2019-09-19 15:54发布

我想改变一个按钮的图标图像上的鼠标进入和鼠标离开。

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

    }                                    

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

Answer 1:

setRolloverIcon(Icon) (无需对MouseListener )。



文章来源: How to change icon image of button on mouse entered/mouse exit?