gpt4 book ai didi

java - 如何使用java更改nimbus外观的背景颜色

转载 作者:塔克拉玛干 更新时间:2023-11-02 07:51:08 26 4
gpt4 key购买 nike

在 Java Swing 应用程序中,我正在尝试 nimbus 外观。它在 JdesktopPane 控件中看起来很棒,但我希望我的所有桌面 Pane 都有不同的颜色,但主题很好。

有什么办法可以改变 nimbus 外观的背景颜色吗?

这是应用灵气外观的示例代码。

   try {
for (LookAndFeelInfo info : UIManager.getInstalledLookAndFeels()) {
if ("Nimbus".equals(info.getName())) {
UIManager.setLookAndFeel(info.getClassName());
break;
}
}
}
catch (Exception e) {}

最佳答案

UIManager.put("nimbusBase", new Color(...));
UIManager.put("nimbusBlueGrey", new Color(...));
UIManager.put("control", new Color(...))

来自 l&f tutorial

关于java - 如何使用java更改nimbus外观的背景颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14700758/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com