切换顶级窗口时如何使主机保持在对话框后面?
以下情况:
我有一个 JFrame 并调用 JOptionPane.showInputDialog("test")
。将显示模式对话框。
然后,当我切换到 Windows 中的另一个打开的窗口(假设是 Firefox),然后返回到我的 Java 应用程序(通过单击 Windows 任务栏中的选项卡或使用 ALT+TAB)时,将仅显示该对话框。
切换到我的应用程序时是否可以显示对话框后面的主框架? 例如,当您打开“首选项”对话框时,Eclipse 将按所需方式运行。 Eclipse 是 SWT,但也许在 Swing 中也是可能的!
Following situation:
I have a JFrame and call JOptionPane.showInputDialog("test")
. The modal dialog will be shown.
When I then switch to another open window in Windows (let's say Firefox) and then return to my Java application (by clicking the tab in the windows task bar or with ALT+TAB) then only the dialog will be shown.
Is it possible to show the main frame behind the dialog when switching to my app?
E.g. Eclipse behaves the desired way when you open the Preferences dialog. Eclipse is SWT, but maybe it's possible in Swing too!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不知道如何使用 JOptionPane 的静态方法来执行此操作,因为您无权访问对话框本身。但是,您可能可以通过创建自己的对话框并添加侦听器来实现相同的目标,如下所示:
I don't know of a way to do this with JOptionPane's static methods, since you don't have access to the dialog itself. However, you can probably achieve the same thing by making your own dialog and adding a listener like this: