zoukankan      html  css  js  c++  java
  • Java Swing中Substance个人比较喜欢的两种组合

    try {
                // 设置外形装饰为可装饰
                JFrame.setDefaultLookAndFeelDecorated(true);
                // 设置外观
                UIManager.setLookAndFeel(new SubstanceLookAndFeel());
                // 设置主题
                SubstanceLookAndFeel.setCurrentTheme(new SubstanceEbonyTheme());
                // 设置皮肤
                SubstanceLookAndFeel.setSkin(new NebulaBrickWallSkin());
                // SubstanceLookAndFeel.setSkin(new OfficeBlue2007Skin());
                // 设置按钮外观
                SubstanceLookAndFeel.setCurrentButtonShaper(new ClassicButtonShaper());
                // 设置水印
                SubstanceLookAndFeel.setCurrentWatermark(new SubstanceBinaryWatermark());
                // 设置边框
                SubstanceLookAndFeel.setCurrentBorderPainter(new StandardBorderPainter());
                // 设置渐变渲染
                SubstanceLookAndFeel.setCurrentGradientPainter(new StandardGradientPainter());
                // 设置标题
                SubstanceLookAndFeel.setCurrentTitlePainter(new FlatTitlePainter());
            } catch (UnsupportedLookAndFeelException ex) {
                ex.printStackTrace();
            }
    try {
                // 设置外形装饰为可装饰
                JFrame.setDefaultLookAndFeelDecorated(true);
                // 设置外观
                UIManager.setLookAndFeel(new SubstanceBusinessBlackSteelLookAndFeel());
                // 设置主题
                SubstanceLookAndFeel.setCurrentTheme(new SubstanceBottleGreenTheme());
                // 设置皮肤
                SubstanceLookAndFeel.setSkin(new FindingNemoSkin());
                // 设置按钮外观
                SubstanceLookAndFeel.setCurrentButtonShaper(new StandardButtonShaper());
                // 设置水印
                SubstanceLookAndFeel.setCurrentWatermark(new SubstanceStripeWatermark());
                // 设置边框
                SubstanceLookAndFeel.setCurrentBorderPainter(new StandardBorderPainter());
                // 设置渐变渲染
                SubstanceLookAndFeel.setCurrentGradientPainter(new StandardGradientPainter());
                // 设置标题
                SubstanceLookAndFeel.setCurrentTitlePainter(new MatteHeaderPainter());
            } catch (UnsupportedLookAndFeelException ex) {
                ex.printStackTrace();
            }

    其中第一个比较朴素,第二个比较华美!

  • 相关阅读:
    GAMBIT、ICEM、HYPERMESH耦合面的处理方法
    如何用hypermesh生成包含interface的流体网格
    python求数字位数的方法
    drawPython
    Python入门计划
    书法与篆刻创作结课
    易忽视的Python知识点
    Ubuntu中,wxpython的TextCtrl引发的error:_pixman_log_error
    在Ubuntu15.10中,使用wxPython的webview和JS进行交互
    PyCharm导入tensorflow包
  • 原文地址:https://www.cnblogs.com/tufujie/p/5449586.html
Copyright © 2011-2022 走看看