新版JRE内置新的LAF:Nimbus,太漂亮了!

阅读更多

从6u10开始内置到JRE中了,可以在UIManager中通过调用 com.sun.java.swing.plaf.nimbus.NimbusLookAndFeel 或 javax.swing.plaf.nimbus.NimbusLookAndFeel 名称打开。


新版JRE内置新的LAF:Nimbus,太漂亮了!_第1张图片

 

再看看NetBeans的界面吧:


新版JRE内置新的LAF:Nimbus,太漂亮了!_第2张图片

感叹,用户体验好了很多,看来Swing越来越有前途啦!

 

P.S. 官方给出了一段这样设置皮肤的代码:

import javax.swing.UIManager.*;

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.
}
 
  • 新版JRE内置新的LAF:Nimbus,太漂亮了!_第3张图片
  • 大小: 108.5 KB
  • 新版JRE内置新的LAF:Nimbus,太漂亮了!_第4张图片
  • 大小: 130.9 KB
  • 查看图片附件

你可能感兴趣的:(新版JRE内置新的LAF:Nimbus,太漂亮了!)