Reputation: 2881
Which are Open source lafs[look n feel] for java swing application?
Upvotes: 4
Views: 5962
Reputation: 17369
Substance LAF from Kirill Grouchnikov is the best I know.
Upvotes: 3
Reputation: 68907
Here is a great answer on another question: Java Look & Feel
Edit:
Don't forget the system look and feel:
try
{
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
} catch (Exception e) {}
Upvotes: 1