JFrame关闭事件处理

1、JFrame实现WindowListener

2、将当前窗口加入监听

this.addWindowListener(this);
  //按关闭按钮,啥事也不做
this.setDefaultCloseOperation(DO_NOTHING_ON_CLOSE);

3、实现windowClosing方法

复制代码
/**
  * 关闭主窗口处理
  */
 @Override
 public void windowClosing(WindowEvent e) {
       int option = JOptionPane.showConfirmDialog(this, "确定退出系统?", "提示",
       JOptionPane.YES_NO_OPTION);
       if (option == JOptionPane.YES_OPTION)
       {
               if (e.getWindow() == this) {
                      this.dispose();
                      System.exit(0);
       } else {
              return;
       }
    }
   else if(option == JOptionPane.NO_OPTION){
          if (e.getWindow() == this) {
                   return;
          }
     }
 }
复制代码

OK!

posted @   王 庆  阅读(2634)  评论(0编辑  收藏  举报
努力加载评论中...
点击右上角即可分享
微信分享提示