How to use Seaglass 'Look and Feel' in my application? [closed]

3

I downloaded the Look and Feel SeaGlass for my JFrame in Java, but JCheckBox and JRadioButton simply bugged me, why does this happen?

As you can see, the result is totally different than expected.

    
asked by anonymous 31.01.2015 / 01:05

1 answer

2
try {
   UIManager.setLookAndFeel("com.seaglasslookandfeel.SeaGlassLookAndFeel");
} catch (Exception e) {
    e.printStackTrace();
}
    
20.10.2015 / 22:09