The Way to Programming
The Way to Programming
Yea i’ve heard of programs coded in Java but they look like normal windows apps, how do you do that? programs like adobe reader, and that guys MSPad etc.
To make your GUI look like Windows:
String lookAndFeel = "com.sun.java.swing.plaf.windows.WindowsLookAndFeel"; try { UIManager.setLookAndFeel(lookAndFeel); } catch (Exception e) { e.printStackTrace(); }
You need to set the look and feel before adding components. Change the long string at the top for a different look.
You -NEED- the try/catch statement with this afaik, as java checks for it on compile.
Sign in to your account