[질문] LookAndFeel Free API 적용시?
지음
2023.04.01
public static void main(String args[]) {
// LooAndFeel 지정.......20050113
PlasticLookAndFeel.setMyCurrentTheme(new Silver(){
protected Font getFont0(int size) {
return new Font(굴림, Font.PLAIN, 12);
}
});
try {
UIManager.setLookAndFeel(new PlasticXPLookAndFeel());
} catch (Exception e) {}
// 프로그램 스타토.......
new Rmc_ln();
}
* 위에서 처럼 LookAndFeel Free Library 를 적용 시켰습니다.
당연히 첫번째 로드 창에서는 .. 먹히질 않고. 두번째 창부터.. 그 기능이 적용되더군요..
여러분은 보통.. LookAndFeel 어떻게 적용하는지 알고 십군요.. 저처럼 main method에 정의하는지 아님 다른
방법이 있는지? 조언 부탁드립니다.