LookAndFeel

Aus Programmers Guide

Wechseln zu: Navigation, Suche
import javax.swing.UIManager;
 
 
public static boolean setLookAndFeel(){
	try {
		UIManager.setLookAndFeel("com.sun.java.swing.plaf.windows.WindowsLookAndFeel");
		return true;
	}catch(Exception uiex){
		    System.err.println(uiex.getLocalizedMessage());
		    return false;
	}
}
Persönliche Werkzeuge