참고사이트: http://docs.oracle.com/javase/tutorial/uiswing/lookandfeel/plaf.html#available
SystemLookAndFeel 종류
Platform | Look and Feel |
---|---|
Solaris, Linux with GTK+ 2.2 or later | GTK+ |
Other Solaris, Linux | Motif |
IBM UNIX | IBM* |
HP UX | HP* |
Classic Windows | Windows |
Windows XP | Windows XP |
Windows Vista | Windows Vista |
Macintosh | Macintosh* |
LookAndFeel 세팅 방법은 다음과 같다.
public static void main(String[] args) { try { // Set System L&F UIManager.setLookAndFeel( UIManager.getSystemLookAndFeelClassName());
//UIManager.setLookAndFeel("javax.swing.plaf.metal.MetalLookAndFeel"); //직접 타이핑해서 넣어도 된다.
} catch (UnsupportedLookAndFeelException e) { // handle exception } catch (ClassNotFoundException e) { // handle exception } catch (InstantiationException e) { // handle exception } catch (IllegalAccessException e) { // handle exception } new SwingApplication(); //Create and show the GUI. }
'프로그래밍 > JAVA' 카테고리의 다른 글
OTA Package Utility (0) | 2013.11.25 |
---|---|
Java Generics (0) | 2012.10.01 |
WindowBuilder Pro for Eclipse 3.7(Indigo) 설치 오류 (0) | 2012.08.06 |
ant 빌드가 안될 때 (0) | 2011.10.19 |