import javax.swing.UIManager; public class Main { public static void main (String[] args) { try { UIManager.setLookAndFeel( UIManager.getCrossPlatformLookAndFeelClassName()); } catch (Exception e) { System.exit(1); } new Kontroll(); } }