2010. 6. 30. 14:27
자바로 UI를 개발하면 기존에 사용하던 윈도우 포맷과 틀려서 거부감이 들때가 있었다. 뭐 그래서 SWT를 찾아 공부도 하고했지만.. look and feel 이라는 넘이 존재하더라.. 이넘 언제부터 나온건지 모름..
기본적으로 윈도우 포맷에 맞춰서 보여주는 코드..
기본적으로 윈도우 포맷에 맞춰서 보여주는 코드..
Example
try {
// Set cross-platform Java L&F (also called "Metal")
UIManager.setLookAndFeel(
UIManager.getSystemLookAndFeelClassName());
}
catch (UnsupportedLookAndFeelException e) {
// handle exception
}
catch (ClassNotFoundException e) {
// handle exception
}
catch (InstantiationException e) {
// handle exception
}
catch (IllegalAccessException e) {
// handle exception
}
// Set cross-platform Java L&F (also called "Metal")
UIManager.setLookAndFeel(
UIManager.getSystemLookAndFeelClassName());
}
catch (UnsupportedLookAndFeelException e) {
// handle exception
}
catch (ClassNotFoundException e) {
// handle exception
}
catch (InstantiationException e) {
// handle exception
}
catch (IllegalAccessException e) {
// handle exception
}
'java > swing' 카테고리의 다른 글
[swing] - 메시지 박스 (0) | 2010.07.19 |
---|---|
[swing] - JList 마지막 아이템 선택 및 스크롤 마지막으로 보내기 (0) | 2010.07.19 |
[swing] - JFileChooser 사용하자 (0) | 2010.06.30 |
[swing] - JTableHeader 값 중앙에 배치하기 (0) | 2010.06.30 |
[swing] - JTable 에 JComboBox 삽입하기 (0) | 2010.06.30 |