【问题标题】:How to close JFrame without using default methods?如何在不使用默认方法的情况下关闭 JFrame?
【发布时间】:2014-04-15 12:12:41
【问题描述】:

我正在使用 NetBeans IDE 创建一个框架,默认情况下该框架是关闭的。我将EXIT_ON_CLOSE等默认行为修改为DO_NOTHING_ON_CLOSE。我想手动关闭。

如何在不使用默认方法的情况下关闭JFrame

这是我的代码:

public class FrameClose extends javax.swing.JFrame {
    public FrameClose() {

      initComponents();
    }


    @SuppressWarnings("unchecked")
    // <editor-fold defaultstate="collapsed" desc="Generated Code">                          
    private void initComponents() {

        setDefaultCloseOperation(javax.swing.WindowConstants.DO_NOTHING_ON_CLOSE);

        javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
        getContentPane().setLayout(layout);
        layout.setHorizontalGroup(
            layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
            .addGap(0, 400, Short.MAX_VALUE)
        );
        layout.setVerticalGroup(
            layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
            .addGap(0, 300, Short.MAX_VALUE)
        );

        pack();
    }// </editor-fold>                        


    public static void main(String args[]) {
        /* Set the Nimbus look and feel */
        //<editor-fold defaultstate="collapsed" desc=" Look and feel setting code (optional) ">
        /* If Nimbus (introduced in Java SE 6) is not available, stay with the default look and feel.
         * For details see http://download.oracle.com/javase/tutorial/uiswing/lookandfeel/plaf.html 
         */
        try {
            for (javax.swing.UIManager.LookAndFeelInfo info : javax.swing.UIManager.getInstalledLookAndFeels()) {
                if ("Nimbus".equals(info.getName())) {
                    javax.swing.UIManager.setLookAndFeel(info.getClassName());
                    break;
                }
            }
        } catch (ClassNotFoundException ex) {
            java.util.logging.Logger.getLogger(FrameClose.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
        } catch (InstantiationException ex) {
            java.util.logging.Logger.getLogger(FrameClose.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
        } catch (IllegalAccessException ex) {
            java.util.logging.Logger.getLogger(FrameClose.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
        } catch (javax.swing.UnsupportedLookAndFeelException ex) {
            java.util.logging.Logger.getLogger(FrameClose.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
        }
        //</editor-fold>

        /* Create and display the form */
        java.awt.EventQueue.invokeLater(new Runnable() {
            public void run() {
                new FrameClose().setVisible(true);
            }
        });
    }
    // Variables declaration - do not modify                     
    // End of variables declaration                   
}

【问题讨论】:

  • 手动关闭是什么意思
  • 是的,这个问题根本不是很清楚。您想避免哪些“默认方法”? “手动关闭”是什么意思?此外,由于您正在学习 Swing,我强烈建议您不要使用 windows builder 实用程序,而是使用 Swing 教程作为指南手动编写代码,直到您学习该库为止。
  • 发送WINDOW_CLOSING,显示here

标签: java swing jframe


【解决方案1】:

您可以在框架对象上使用 dispose() 方法, 例如:

JFrame frame  = new JFrame();
frame.dispose();

【讨论】:

    【解决方案2】:

    您可以尝试使用 WindowListener

    addWindowListener(new WindowListener() {
            @Override
            public void windowActivated(WindowEvent arg0) { }
            @Override
            public void windowClosed(WindowEvent arg0) { }
            @Override
            public void windowClosing(WindowEvent arg0) { }
            @Override
            public void windowDeactivated(WindowEvent arg0) { }
            @Override
            public void windowDeiconified(WindowEvent arg0) { }
            @Override
            public void windowIconified(WindowEvent arg0) { }
            @Override
            public void windowOpened(WindowEvent arg0) { }
    });
    

    使用它而不是调用setDefaultCloseOperation(),然后使用最适合您想要做的事情的方法。

    或者,如果您想在代码中关闭框架,请使用 setVisible(false); 隐藏框架或使用 dispose() 摆脱整个框架

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 2014-06-04
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2021-10-10
      • 2020-11-28
      • 2012-12-24
      • 2020-06-20
      相关资源
      最近更新 更多