Package snoozesoft.systray4j

Examples of snoozesoft.systray4j.SysTrayMenuItem


        initMenuItems();
    }
 
  private void initMenuItems() {
        //Allow users to close the application
        SysTrayMenuItem exit = new SysTrayMenuItem("Exit");
        exit.addSysTrayMenuListener(new SysTrayMenuAdapter() {
            public void menuItemSelected(SysTrayMenuEvent e) {
                System.exit(0);
            }
        });
View Full Code Here

TOP

Related Classes of snoozesoft.systray4j.SysTrayMenuItem

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.