Hello,
I'm trying to change the look of java apps to something native.
In my first JFrame, I'm using:
try {
//org.fife.plaf.VisualStudio2005.VisualStudio2005LookAndFeel
//de.javasoft.plaf.synthetica.SyntheticaStandardLookAndFeel
//com.jgoodies.looks.plastic.Plastic3DLookAndFeel
//UIManager.setLookAndFeel("com.sun.java.swing.plaf.windows.WindowsLookAndFeel");
UIManager.setLookAndFeel("com.sun.java.swing.plaf.windows.WindowsLookAndFeel");
} catch (ClassNotFoundException e) {
e.printStackTrace();
} catch (InstantiationException e) {
e.printStackTrace();
} catch (IllegalAccessException e) {
e.printStackTrace();
} catch (UnsupportedLookAndFeelException e) {
e.printStackTrace();
}
getContentPane().setLayout(null);
Problem is that it looks like a mix of native/java, whereas the next JFrame is ok.