gpt4 book ai didi

java - 如何阻止 JOptionPane 禁用根框架

转载 作者:行者123 更新时间:2023-11-30 08:53:13 25 4
gpt4 key购买 nike

如何在不禁用任何当前打开的框架的情况下显示 JOptionPane?

我有一个带有开始和停止按钮的 JFrame。在任何时候,我都希望用户能够按下主框架上的“停止”按钮,以停止辅助线程(由“开始”按钮启动)。

然而,第二个运行的线程有时会打开一个 JOptionPane。当它这样做时,主框架被禁用,用户不能按下停止按钮。

(当它连续打开多个 JOptionPanes 时,试图停止它会变得非常令人沮丧)。

我试过了

JOptionPane.showMessageDialog(null, "It's Broken Mate");

没有成功。我还尝试将其传递给 JFrame 以禁用:

JOptionPane.showMessageDialog(new JFrame(), "Still No Go");

那也失败了。我什至尝试过

JFrame frame = new JFrame();
frame.setVisible(true);
JOptionPane.showMessageDialog(frame, "CMON Please");

此外,

JFrame frame = new JFrame();
frame.setVisible(true);
JOptionPane.setRootFrame(frame);
JOptionPane.showMessageDialog(frame, "I'm getting angry now.");

而且还在。没有什么。不起作用。它打开一个消息框,一切都被禁用。在再次启用任何内容之前,我必须关闭 JOptionPane ...

有什么想法吗?

干杯

最佳答案

JOptionPanemodal ,所以你不能直接这样做。

All dialogs are modal. Each showXxxDialog method blocks the caller until the user's interaction is complete.

您必须使用 JDialog 或类似的工具。

    JOptionPane p = new JOptionPane("I'm getting happy now.");
JDialog k = p.createDialog(":-)");
k.setModal(false); // Makes the dialog not modal
k.setVisible(true);

关于java - 如何阻止 JOptionPane 禁用根框架,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29860863/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com