4

Which are Open source lafs[look n feel] for java swing application?

trashgod
  • 203,806
  • 29
  • 246
  • 1,045
SamSol
  • 2,885
  • 6
  • 37
  • 56

3 Answers3

3

Substance LAF from Kirill Grouchnikov is the best I know.

Eugene Ryzhikov
  • 17,131
  • 3
  • 38
  • 60
1

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) {}
Community
  • 1
  • 1
Martijn Courteaux
  • 67,591
  • 47
  • 198
  • 287
1

Don't forget

Seaglass : a LAF inspired by the OSX theme and, well, you knew it, seaglass (beautiful!)

Nimbus : The standard Java L&F for Java 6

Larzan
  • 9,389
  • 3
  • 42
  • 41