NetBeans:如何更改操作系统的外观

发布于 2024-12-07 04:15:10 字数 208 浏览 2 评论 0原文

我使用 Java 在 Netbeans 中开发了一个小型桌面应用程序。该应用程序正在按预期运行。我是在WIN7下开发的。

当我在 Microsoft Windows 上运行它时,UI 的外观和感觉与 Win XP Metal 主题类似,当我在 MAC 上运行它时,它会显示相同的主题。我想改变操作系统的主题。现在主题对于 Windows 来说是可以的,我正在寻找 MAC 上的解决方案。

I developed a small desktop application in Netbeans using Java. The application is working as expected. I developed it under WIN7.

When i run it on Microsoft Windows, the look and feel of UI is similar to Win XP Metal theme and when i run it on MAC it shows me the same theme. I want to change that theme with respect to operating system. Right now the theme is ok for windows i am looking for solution on MAC.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

秋风の叶未落 2024-12-14 04:15:10
try{UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());}
catch(Exception e){}
try{UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());}
catch(Exception e){}
许你一世情深 2024-12-14 04:15:10

如果您使用 Swing,那么这应该可以工作:

try {
  UIManager.setLookAndFeel(
    UIManager.getSystemLookAndFeelClassName());
} catch (Exception e) {
}

If you're using Swing, then this should work:

try {
  UIManager.setLookAndFeel(
    UIManager.getSystemLookAndFeelClassName());
} catch (Exception e) {
}
稚然 2024-12-14 04:15:10

Read the secton from the Swing tutorial on How to Set the Look and Feel for information about setting/changing the LAF.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文