Hi,
I want to set windows L&F,
but my JButtons looks are changed, the JToolber, JHeader of JTable are changed...(the header of my table with no boarder..
How to sel L&F to my project include buttons, toolber, header to look like win looks?
Thanks.
try {
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
} catch (ClassNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (InstantiationException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IllegalAccessException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (UnsupportedLookAndFeelException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}