낭만 프로그래머

Java Swing 에서 Nimbus Look and Feel 사용하기 본문

Java/Common

Java Swing 에서 Nimbus Look and Feel 사용하기

조영래 2018. 11. 20. 11:08

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/tutorial/uiswing/lookandfeel/nimbus.html