Darcula look and Feel in the application

Asked

Viewed 181 times

1

Hello, I use Netbeans with the Darcula LAF graphical plugin to program Java. This plugin leaves a dark design, very cool. In the Jframe editing screen the look and Feel is inherited: Darcula LAF

But if I compile it gets the look and Feel that I usually put via code (Uimanager.setLookAndFeel(Uimanager.getSystemLookAndFeelClassName());) inserir a descrição da imagem aqui

My question is, somehow I can inherit this look and Feel from the plugin?

Thanks!

1 answer

1


Relationship this jar in his class path, and then:

BasicLookAndFeel darcula = new DarculaLaf();
UIManager.setLookAndFeel(darcula);

Browser other questions tagged

You are not signed in. Login or sign up in order to post.