zoukankan      html  css  js  c++  java
  • LookAndFeelInfo

    在读zap源码的时候碰到:UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
    以下来自百度知道
    UIManager.setLookAndFeel(lookAndFeel); 即可设置窗口风格
    JDK自带的有如下几个:
    1、Metal风格 (默认)
    String lookAndFeel = "javax.swing.plaf.metal.MetalLookAndFeel";
    UIManager.setLookAndFeel(lookAndFeel);
    2、Windows风格
    String lookAndFeel = "com.sun.java.swing.plaf.windows.WindowsLookAndFeel";
    UIManager.setLookAndFeel(lookAndFeel);
    3、Windows Classic风格
    String lookAndFeel = "com.sun.java.swing.plaf.windows.WindowsClassicLookAndFeel";
    UIManager.setLookAndFeel(lookAndFeel);
    4、Motif风格
    String lookAndFeel = "com.sun.java.swing.plaf.motif.MotifLookAndFeel";
    UIManager.setLookAndFeel(lookAndFeel);
    5、Mac风格 (需要在相关的操作系统上方可实现)
    String lookAndFeel = "com.sun.java.swing.plaf.mac.MacLookAndFeel";
    UIManager.setLookAndFeel(lookAndFeel);
    6、GTK风格 (需要在相关的操作系统上方可实现)
    String lookAndFeel = "com.sun.java.swing.plaf.gtk.GTKLookAndFeel";
    UIManager.setLookAndFeel(lookAndFeel);
    7、可跨平台的默认风格
    String lookAndFeel = UIManager.getCrossPlatformLookAndFeelClassName();
    UIManager.setLookAndFeel(lookAndFeel);
    8、当前系统的风格
    String lookAndFeel = UIManager.getSystemLookAndFeelClassName();
    UIManager.setLookAndFeel(lookAndFeel);

  • 相关阅读:
    NodeJS加MongoDB应用入门
    调试NodeJS应用
    二月一号博客
    大三寒假第二篇学习记录
    大三寒假第一篇学习记录
    jQuery处理json数据
    Mapreduce案例测试
    你的灯还亮着吗?发现问题的真正所在(一)
    大型数据库技术(一)
    暑假第八周博客
  • 原文地址:https://www.cnblogs.com/fsqsec/p/5318176.html
Copyright © 2011-2022 走看看