JDialogs 导致我的应用程序菜单在 OSX 上消失
每当我的任何 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Swing 可以选择使用应用程序的
JFrame
中的JMenuBar
并将其显示在屏幕顶部。设置以下属性以启用该功能。不幸的是,这个 不适用于
JDialog
,仅JFrame
。Swing can optionally use the
JMenuBar
from your application'sJFrame
and display it along the top of the screen. Set the following property to enable that feature.Unfortunately, this does not work with
JDialog
, onlyJFrame
.