zoukankan      html  css  js  c++  java
  • MFC非模态对话框的销毁

    转自:http://www.cnblogs.com/afarmer/archive/2012/03/31/2427328.html,节选。

     

    非模态对话框相对于模态对话框,其创建和销毁过程和模态对话框有一定的区别 。

    先看一下MSDN的原文:

    When   you   implement   a   modeless   dialog   box,   always   override   the   OnCancel   member   function   and   call   DestroyWindow   from   within   it.   Don’t   call   the   base   class   CDialog::OnCancel,   because   it   calls   EndDialog,   which   will   make   the   dialog   box   invisible   but   will   not   destroy   it.   You   should   also   override   PostNcDestroy   for   modeless   dialog   boxes   in   order   to   delete   this,   since   modeless   dialog   boxes   are   usually   allocated   with   new.   Modal   dialog   boxes   are   usually   constructed   on   the   frame   and   do   not   need   PostNcDestroy   cleanup.

    MS的指示:非模态对话框需要重载函数OnCanel,并且在这个函数中调用DestroyWindow。并且不能调用基类的OnCancel,因为基类的OnCancel调用了EndDialog这个函数,这个函数是针对模态对话框的。 还有一个必须重载的函数就是PostNcDestroy,这也是一个虚函数,通常的非模态对话框是用类的指针,通过new创建的,这就需要在PostNcDestroy函数中delete掉这个指针。

    下面我们就可以用代码实现一下非模态对话框的创建和销毁过程:

    //建立

    //主框架中:

    CTestDlg *pDlg=new CTestDlg;

    pDlg->Create(IDD_TESTDLG,this);

    pDlg->ShowWindow(SW_SHOW);

    //对话框中:

    void CTestDlg::OnCancel()

    {

        DestroyWindow();

    }

    void CTestDlg::PostNcDestroy()

    {

        CDialog::PostNcDestroy();

        delete this;

    }

    如果要在点击按钮的情况下,销毁非模态对话框,只需要把按钮的事件映射到OnCancel函数即可。

  • 相关阅读:
    securecrt 中文乱码解决方案
    linux文件压缩、下载命令
    weinre调试
    linux查看当前目录命令
    linux下清除缓存文件并重启tomcat
    undefined加引号和不加引号的区别
    web/wap微博分享链接
    linux查找文件内容
    MySQL 5.1 安装过程中报apply security setting错误的解决办法 收藏
    Sleep Mode For WSN of Jennic
  • 原文地址:https://www.cnblogs.com/qinfengxiaoyue/p/3047611.html
Copyright © 2011-2022 走看看