如何更改 Netbeans 中的 Swing 外观
我是 netbeans ide 的新手,我有一个 swing 桌面应用程序,我想将默认的 java 外观和感觉(为其)更改为物质外观和感觉(或其他),那么如何将物质 jar 文件添加到我的项目中 (我想将项目部署到 jar 文件),并从中设置外观。
谢谢
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
首先尝试此代码:
您还可以使用 Nimbus 主题,修改为此代码:
并为此编辑主项目:
参考:
forum.codecall.net
First try this code :
You can also use Nimbus theme, modified to this code :
And edit the main project for this :
Reference :
forum.codecall.net
您可以将 .jar 放置在模块包装器中,就像将任何 .jar 文件放置在 NetBeans 平台应用程序中一样。至于设置外观,您可能需要扩展 ModuleInstall,具体来说,用如下内容重写 returned() 方法:
You place the .jar in a module wrapper, as you would any .jar file in a NetBeans Platform application. As for setting the look and feel, you might want to extend ModuleInstall, specifically, override the restored() method with something like this:
抱歉,如果是旧的,但在 Netbeans 上,您可以单击项目上的辅助按钮(右键单击),然后转到“属性”。
接下来转到应用程序>桌面应用程序,您可以在那里更改外观:)。
Sorry if is old but on Netbeans you can click with the secondary button on your project (right click), and go to Properties.
Next go to Appliation>Desktop App and there you can change the look and feel :).
如果您想在应用程序中使用 Substance LookAndFeel,简单的步骤是将 SubstanceLookAndFeel jar 添加到库类路径中(在 NetBeans IDE 上,只需右键单击库节点,然后添加 Substance.jar)。添加 Substance.jar 后,在主应用程序中只需添加以下代码(在启动主框架之前):
如果您也希望 NetBeans IDE 使用 Substance Look And Feel,只需将 SubstanceLookAndFeel.jar 放在特定目录中(例如,在 /home/ 中) your-username/LAF/SubstanceLookAndFeel.jar) 并使用以下命令启动 NetBeans IDE:
If you want use Substance LookAndFeel in your application, the easy step is add SubstanceLookAndFeel jar into your library classpath (On NetBeans IDE just right click on library node, then add Substance.jar). After you add substance.jar, in your main application just add this code (before you launch main frame) :
If you want NetBeans IDE using Substance Look And Feel too, just put SubstanceLookAndFeel.jar in specific directory (ex. in /home/your-username/LAF/SubstanceLookAndFeel.jar) and launch NetBeans IDE with this command :