I want to make my form visible when I double click the tray icon? How do I catch the double click on the icon? Thanks.
Try to use MouseListener with
public void mousePressed( MouseEvent e ) { if(e.getClickCount() >= 2){ //do something } }