SamSol
SamSol

Reputation: 2881

Open source laf[look n feel] for java swing application

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

Upvotes: 4

Views: 5962

Answers (3)

Eugene Ryzhikov
Eugene Ryzhikov

Reputation: 17369

Substance LAF from Kirill Grouchnikov is the best I know.

Upvotes: 3

Martijn Courteaux
Martijn Courteaux

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

Larzan
Larzan

Reputation: 9686

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

Upvotes: 1

Related Questions