/** Be�ll�tja a form kin�zet�t */
public static void initLookAndFeel() throws Exception{
LookAndFeel lf = UIManager.getLookAndFeel();
if (lf instanceof MetalLookAndFeel) {
MetalLookAndFeel mlf = (MetalLookAndFeel)lf;
mlf.setCurrentTheme(new DefaultMetalTheme());
UIManager.setLookAndFeel(mlf);
UIManager.put("TextField.font",new Font("Arial",Font.BOLD,14));
UIManager.put("PasswordField.font",new Font("Arial",Font.BOLD,14));
}
}