Darcula look and feel in the application

1

Hello, I use NetBeans with the Darcula LAF graphical plugin to program Java. This plugin leaves a dark, very nice design. On the JFrame edit screen the look and feel is inherited:

ButifIcompileitgetsthelookandfeelthatIusuallyputviacode(UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());)

My question is, can I somehow inherit this plugin's look and feel?

Thanks!

    
asked by anonymous 12.08.2016 / 20:24

1 answer

1

Relate this jar in your class path , and then:

BasicLookAndFeel darcula = new DarculaLaf();
UIManager.setLookAndFeel(darcula);
    
15.08.2016 / 14:02