Java - UIManager all-windows


/ Published in: Java
Save to your folder(s)



Copy this code and paste it in your HTML
  1. // Con queste definizioni dico che tutti i frame e i dialog prendono il tema Metal
  2. JFrame.setDefaultLookAndFeelDecorated(true);
  3. JDialog.setDefaultLookAndFeelDecorated(true);
  4. //
  5.  
  6. try
  7. {
  8. // Con questa imposto il tema
  9. UIManager.setLookAndFeel(new MetalLookAndFeel());
  10. }
  11. {
  12. e.printStackTrace();
  13. }
  14. // In questo modo tutte le finestre avranno il tema Metal

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.