View Single Post
  #12 (permalink)  
Old 05-14-2008, 08:25 AM
Victor Victor is offline
Learning Programmer
 
Join Date: May 2007
Posts: 96
Rep Power: 5
Victor is on a distinguished road
Default Re: Help me pick prgramming language for app

You can also configure the look and feel of Java applications. You can give it a native look easily:

Code:
try {
    UIManager.setLookAndFeel(
        UIManager.getSystemLookAndFeelClassName());
} catch (UnsupportedLookAndFeelException ex) {
  System.out.println("Unable to load native look and feel");
}
There are also sites that provide look and feels that have been specially written like Home - javootoo.com
I'm not a fan of the default Swing look and feel either
__________________
Pegasus Homepage
Reply With Quote