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

About this user

« 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...

    // 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
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS