JDialogs 导致我的应用程序菜单在 OSX 上消失

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

每当我的任何 JDialog 获得焦点时,工具栏都不会显示我的应用程序主菜单接受的任何菜单(它不显示文件编辑等......)。这是 JDialogs/Swing 固有的问题还是我制作对话框的方式存在某种问题?

Whenever any of my JDialogs have focus the toolbar does not display any menus accept for my applications main menu (it doesn't show file edit etc....). Is this an issue inherent to JDialogs/Swing or is this some sort of problem with how I made my dialogs?

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

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

发布评论

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

评论(1

葬シ愛 2024-08-22 10:04:07

Swing 可以选择使用应用程序的 JFrame 中的 JMenuBar 并将其显示在屏幕顶部。设置以下属性以启用该功能。

System.setProperty("apple.laf.useScreenMenuBar", "true");

不幸的是,这个 不适用于 JDialog,仅JFrame

Swing can optionally use the JMenuBar from your application's JFrame and display it along the top of the screen. Set the following property to enable that feature.

System.setProperty("apple.laf.useScreenMenuBar", "true");

Unfortunately, this does not work with JDialog, only JFrame.

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