Guest User

Untitled

a guest
Apr 21st, 2018
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. BasicLookAndFeel darcula = new DarculaLaf();
  2. try {
  3. UIManager.setLookAndFeel(darcula);
  4. } catch (UnsupportedLookAndFeelException ex) {
  5. Logger.getLogger(windows.class.getName()).log(Level.SEVERE, null, ex);
  6. }
  7.  
  8. try {
  9. UIManager.setLookAndFeel("javax.swing.plaf.metal.MetalLookAndFeel");
  10. } catch (UnsupportedLookAndFeelException ex) {
  11. Logger.getLogger(windows.class.getName()).log(Level.SEVERE, null, ex);
  12. }
  13. SwingUtilities.updateComponentTreeUI(frame);
  14. frame.pack();
Add Comment
Please, Sign In to add comment