목록2018/11/20 (1)
낭만 프로그래머
Swing으로 Application으로 개발 할때 기본 UI 디자인이 맘에 들지 않는다. Look and Feel 을 Nimbus 로 바꿔 보자 try { for (LookAndFeelInfo info : UIManager.getInstalledLookAndFeels()) { if ("Nimbus".equals(info.getName())) { UIManager.setLookAndFeel(info.getClassName()); break; } } } catch (Exception e) { // If Nimbus is not available, you can set the GUI to another look and feel. } 참조 : https://docs.oracle.com/javase/tutoria..
Java/Common
2018. 11. 20. 11:08