在主对话框(CRolandViewDlg)中点击按钮打开一个新的对话框(CPlant),
void CRolandViewDlg::OnBnClickedViewplant()
{
hWnd_MyMainDlg = GetSafeHwnd(); //获取对话框的句柄
CPlant *plg;
plg = new CPlant();
if(plg != NULL)
{
BOOL ret = plg->Create(IDD_Plant,this);
if(!ret)
AfxMessageBox(_T("打开历史数据画面失败!"),0,0);
plg->ShowWindow(SW_SHOW);
}
else
AfxMessageBox(_T("打开历史数据画面失败!"),0,0);
}最后在新对话框中点击按钮返回:
void CPlant::OnBnClickedCancel()
{
OnCancel();
DestroyWindow();
}
同时重载了PostNcDestroy
void CPlant::PostNcDestroy()
{
    CDialog::PostNcDestroy();
    delete this;
}
结果发现,打开该新对话框后程序占用内存增加很多,但返回后内存却不减少,短时间再打开该对话框,占用内存不增加了,时间稍长再打开又增加了,照此以往,程序长期运行,内存岂不要耗尽?
请指教,是哪里出了问题呢,我的程序是在CE下运行的,请给一个完整的对话框打开,完毕的程序好吗?不会耗费内存的。
谢谢

解决方案 »

  1.   

    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. 
      

  2.   

    CPlant dlg;//设计CPlant的时候,指定好相关属性
    dlg.DoModal();
    //不一定非要new
      

  3.   

    在OnBnClickedCancel里面发送WM_DESTROY
      

  4.   

    CPlant dlg;//设计CPlant的时候,指定好相关属性
    dlg.DoModal();
    //不一定非要new这么创建的话,倒是方便,模态对话框
    那么还需要重载PostNcDestroy吗?是不是退出对话框的时候直接这样就行呢?
    void CPlant::OnBnClickedCancel()
    {
    OnOK();
    }
      

  5.   

    delete是必须的,DestroyWindow不能释放new的内存
      

  6.   

    我试了一下,用dlg.DoModal();
    创建模态对话框,退出时只用
    OnOK();
    也把PostNcDestroy()删掉了
    结果退出后占用内存大小还是不会恢复,郁闷
      

  7.   

    最后在新对话框中点击按钮返回:
    void CPlant::OnBnClickedCancel()
    {
    OnCancel();   //这句去掉试试
    DestroyWindow();
    }
    同时重载了PostNcDestroy
    void CPlant::PostNcDestroy()
    {
      CDialog::PostNcDestroy();
      delete this;
    }
      

  8.   

    非模态对话框相对于模态对话框,他的创建和销毁过程和模态对话框有一定的区别
    先看一下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函数即可。
      

  9.   

    还是有些糊涂,总结一下,哪里不对,请指出来,谢谢!
    一、模态对话框:
       创建: 
    void CRolandViewDlg::OnBnClickedViewplant()
    {
    hWnd_MyMainDlg = GetSafeHwnd(); //获取对话框的句柄
    CPlant plg;
    plg.DoModal();
    }
    销毁:
    void CPlant::OnBnClickedCancel()
    {
    ::PostMessage(hWnd_MyMainDlg,WM_MYMSG_SaveUserIni,(WPARAM)1,0);
    KillTimer(16);//16号定时器,显示动画
    CDialog::OnCancel();
    }
      

  10.   

    调试一下看看PostNcDestroy能不能进去
      

  11.   

    二、非模态对话框:
    创建:
    void CRolandViewDlg::OnBnClickedViewplant()
    {
    // TODO: 在此添加控件通知处理程序代码
    hWnd_MyMainDlg = GetSafeHwnd(); //获取对话框的句柄
    CPlant *plg;
    plg = new CPlant();
    if(plg != NULL)
    {
    BOOL ret = plg->Create(IDD_Plant,this);
    if(!ret)
    AfxMessageBox(_T("打开历史数据画面失败!"),0,0);
    plg->ShowWindow(SW_SHOW);
    }
    else
    AfxMessageBox(_T("打开历史数据画面失败!"),0,0);
    }
    新对话框中:
    void CPlant::PostNcDestroy()
    {
        CDialog::PostNcDestroy();
        delete this;
    }
    void CPlant::OnCancel()
    {
             CDialog::OnCancel();
    DestroyWindow();
    }
    void CPlant::OnBnClickedCancel()
    {
    ::PostMessage(hWnd_MyMainDlg,WM_MYMSG_SaveUserIni,(WPARAM)1,0);
    KillTimer(16);//16号定时器,显示动画
    OnCancel();
    }