DZone 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
Java - UIManager All-windows
// Imposto il tema Metal non solo all'interno delle finestre di Java, ma anche al suo esterno...
// Con queste definizioni dico che tutti i frame e i dialog prendono il tema Metal
JFrame.setDefaultLookAndFeelDecorated(true);
JDialog.setDefaultLookAndFeelDecorated(true);
//
try
{
// Con questa imposto il tema
UIManager.setLookAndFeel(new MetalLookAndFeel());
}
catch(UnsupportedLookAndFeelException e)
{
e.printStackTrace();
}
// In questo modo tutte le finestre avranno il tema Metal





