如何使 JFrame 具有与其他组件不同的外观(多路复用)?

发布于 2024-12-25 07:36:42 字数 375 浏览 1 评论 0原文

此方法

UIManager.setLookAndFeel(new SubstanceCeruleanLookAndFeel());

设置整个应用程序的 L&F。如何组合它,然后为 JFrame 设置不同的 L&F?

编辑

我在多路复用外观。这到底是如何运作的?我找不到任何例子。

This method

UIManager.setLookAndFeel(new SubstanceCeruleanLookAndFeel());

sets the L&F for the whole app. How do I combine this and then set different L&F just for JFrame?

EDIT

I've found this article on Multiplexing Look and Feels. How exactly does this work? I can't find any examples.

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

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

发布评论

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

评论(2

小耗子 2025-01-01 07:36:42

您可以轻松地覆盖 JComponent 的 UI 默认值; 此处有一个示例,说明了如何更改 JTree 图标。不幸的是,JFrame 不是 JComponent;它没有 UI 委托,其装饰由主机操作系统提供。

要获得更具体的指导,您需要澄清您想要实现的目标。

另请参阅使用多重外观和感觉进行验证叠加

You can override UI defaults for a JComponent easily enough; there's an example here that illustrates changing JTree icons. Unfortunately, JFrame is not a JComponent; it has no UI delegate, and its decorations are supplied by the host operating system.

For more specific guidance, you'll need to clarify what you're trying to accomplish.

See also Validation overlays using multiplex look and feel.

笑红尘 2025-01-01 07:36:42

这是不可能的,外观和感觉是广泛应用的。

It is not possible, the look and feel is application wide.

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