Advertisement
Guest User

Untitled

a guest
Jan 19th, 2017
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. SystemTray.isSupported()
  2.  
  3. SystemTray tray = SystemTray.getSystemTray();
  4.  
  5. TrayIcon trayIcon = new TrayIcon(unaImagen, "tooltip");
  6.  
  7. PopupMenu popup = new PopupMenu();
  8. //Aqui se añaden todos los elementos
  9. .....
  10. trayIcon.setPopupMenu(popup);
  11.  
  12. tray.add(trayIcon);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement