How to change the image of a button icon on a mouse / mouse input?

I want to change the mouse button and mouse icon image.

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

Please suggest changing the icon image.

+3
source share
1 answer

See setRolloverIcon(Icon) (no MouseListener ).

+7
source

Source: https://habr.com/ru/post/1500151/


All Articles