V
vaDer
Gast
Wenn ich einen JTree erstelle wird er automatisch in Metal dargestellt. Wie kann ich ihn einen Windowslook verpassen? Beispiele?
// 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) {
}