为什么当父 JFrame 最小化时,这个无模式子 JDialog 没有最小化?

发布于 2024-12-29 04:42:10 字数 1073 浏览 1 评论 0原文

我的理解是,当父 JFrame 最小化时,它的子 JFrame 也会最小化,但在下面的简单示例中,这种情况不会发生(即,当 jframe 最小化时,子对话框保持可见)。我错过了什么吗?

public class Test
{
    private JFrame f1;
    private JDialog d2;

    private void createAndShowGUI()
    {
        f1 = new JFrame("(parent frame)");
        f1.addWindowListener( new WindowAdapter()
        {
            public void windowClosing( WindowEvent e )
            {
                e.getWindow().dispose();
            }
        } );
        f1.setBounds(32, 32, 300, 200);
        d2 = new JDialog(f1, "child dialog" );
        d2.setBounds(100, 100, 300, 200);
        d2.setVisible( true );
        f1.setVisible( true );
    }

    public static void main( String[] args )
    {
        // Schedule a job for the event-dispatching thread:
        // creating and showing this application's GUI.
        SwingUtilities.invokeLater( new Runnable()
        {
            public void run()
            {
                Test test = new Test();
                test.createAndShowGUI();
            }
        } );
    }
}

谢谢!

My understanding is that when a parent JFrame is minimized then its children also are minimized but in the following dirt-simple example it doesn't happen (i.e. the child dialog stays visible when the jframe is minimized). Am I missing something?

public class Test
{
    private JFrame f1;
    private JDialog d2;

    private void createAndShowGUI()
    {
        f1 = new JFrame("(parent frame)");
        f1.addWindowListener( new WindowAdapter()
        {
            public void windowClosing( WindowEvent e )
            {
                e.getWindow().dispose();
            }
        } );
        f1.setBounds(32, 32, 300, 200);
        d2 = new JDialog(f1, "child dialog" );
        d2.setBounds(100, 100, 300, 200);
        d2.setVisible( true );
        f1.setVisible( true );
    }

    public static void main( String[] args )
    {
        // Schedule a job for the event-dispatching thread:
        // creating and showing this application's GUI.
        SwingUtilities.invokeLater( new Runnable()
        {
            public void run()
            {
                Test test = new Test();
                test.createAndShowGUI();
            }
        } );
    }
}

Thanks!

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

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

发布评论

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

评论(1

只为守护你 2025-01-05 04:42:10

尝试获取 Window[] 并将其全部关闭...也许这适用于每个操作系统。

private void createAndShowGUI() {
    f1 = new JFrame("(parent frame)");
    f1.addWindowListener( new WindowAdapter() {
        public void windowClosing( WindowEvent e ) {
            Window[] windows = e.getWindow().getOwnedWindows();
            for (Window window : windows) {
                window.dispose();
            }
        }
    } );

Try getting Window[] and close them all... Maybe that works in every OS.

private void createAndShowGUI() {
    f1 = new JFrame("(parent frame)");
    f1.addWindowListener( new WindowAdapter() {
        public void windowClosing( WindowEvent e ) {
            Window[] windows = e.getWindow().getOwnedWindows();
            for (Window window : windows) {
                window.dispose();
            }
        }
    } );
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文