Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

Java - UIManager all-windows

// Imposto il tema Metal non solo all'interno delle finestre di Java, ma anche al suo esterno...

   1  
   2      // Con queste definizioni dico che tutti i frame e i dialog prendono il tema Metal
   3      JFrame.setDefaultLookAndFeelDecorated(true);
   4      JDialog.setDefaultLookAndFeelDecorated(true);
   5      //
   6  
   7      try
   8      {
   9          // Con questa imposto il tema
  10  	UIManager.setLookAndFeel(new MetalLookAndFeel());
  11      }
  12      catch(UnsupportedLookAndFeelException e)
  13      {
  14  	e.printStackTrace();
  15      }
  16      // In questo modo tutte le finestre avranno il tema Metal
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS