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.
source share