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函数即可。

  • 相关阅读:
    Python3.6中PyInstaller不能对文件进行打包问题
    itchat和matplotlib的结合使用爬取微信信息
    NumPy笔记
    Spyder在windows下常用快捷键
    React 省市区三级联动
    react-router 4.0中跳转失灵
    React+ajax+java 上传图片并预览
    CMDB与自动化运维,一切尽在掌握中?
    XSS跨站脚本攻击
    shell脚本?
  • 原文地址:https://www.cnblogs.com/qinfengxiaoyue/p/3047611.html
Copyright © 2011-2022 走看看