关于为Java项目使用外观的建议

时间:2014-05-04 05:46:30

标签: java swing user-interface look-and-feel nimbus

我想在我的Java GUI项目中使用外观(在Swing中),其中 windows容器的框架颜色是暗的,容器主体的颜色是白色。

例如,您可以看到浏览器的图片:框架为黑色,而正文为白色。我想在我的Java GUI项目中使用类似的东西。 最好一个Nimbus L&F,所以有任何建议吗?

enter image description here

2 个答案:

答案 0 :(得分:3)

尝试使用此Nimbus外观。

SwingUtilities.invokeLater(new Runnable() {

    @Override
    public void run() {
        try {
            for (LookAndFeelInfo info : UIManager.getInstalledLookAndFeels()) {
                if ("Nimbus".equals(info.getName())) {
                    UIManager.setLookAndFeel(info.getClassName());
                    break;
                }
            }
        } catch (Exception e) {
            e.printStackTrace();
            // If Nimbus is not available, you can set the GUI to 
            // another look and feel.
        }
    }
});

欲了解更多信息,请查看以下链接:

答案 1 :(得分:3)

查看JTattoo外观和感觉库,您可以选择分类

以下是来自图书馆的一对夫妇

JTattoo Acryl LAF

enter image description here

JTattoo Graphite LAF

enter image description here