How to get the Operating System's Look & Feel in Java 7?

前端 未结 1 708
-上瘾入骨i
-上瘾入骨i 2021-01-01 14:42

I am coding Java 7 with the Netbeans 7.1 IDE. From the Java 1.7 package they are using a new theme in their applications.

What can I do to make my application\'s th

相关标签:
1条回答
  • 2021-01-01 15:26

    I feel that this is more a question for SO, but in short you should try something like :

    UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
    
    0 讨论(0)
提交回复
热议问题