V
vaDer
Gast
Wenn ich einen JTree erstelle wird er automatisch in Metal dargestellt. Wie kann ich ihn einen Windowslook verpassen? Beispiele?
Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
// native laf holen (in deinem fall eben windows)
String nativeLF = UIManager.getSystemLookAndFeelClassName();
//laf setzen
try {
UIManager.setLookAndFeel(nativeLF);
} catch (InstantiationException e) {
} catch (ClassNotFoundException e) {
} catch (UnsupportedLookAndFeelException e) {
} catch (IllegalAccessException e) {
}