use of com.bulenkov.darcula.DarculaLaf in project vft-capture by videofirst.
the class VfCaptureUi method setUiLookAndFeel.
/**
* Set look and feel (needs to be done before application loads up).
*/
private void setUiLookAndFeel() {
try {
BasicLookAndFeel darcula = new DarculaLaf();
UIManager.setLookAndFeel(darcula);
} catch (UnsupportedLookAndFeelException ex) {
throw new CaptureException("Look and feel not supported");
}
}
use of com.bulenkov.darcula.DarculaLaf in project vft-capture by videofirst.
the class HideToSystemTray method main.
public static void main(String[] args) throws Exception {
BasicLookAndFeel darcula = new DarculaLaf();
UIManager.setLookAndFeel(darcula);
new HideToSystemTray();
}
Aggregations