在DoModal之前,添加OnOK
例如:
this->OnOK();
CPopDialog dlg;
dlg.DoModal();
this->SetVisble(false);
if(IDOK==childDlg.doModal()};
//回来的时候,在子对话框设置父对话框的visible属性为true就成了。
this->ShowWindow(FALSE);
CNewDlg dlg;
dlg.DoModal();
this->ShowWindow(TRUE);
如果你关闭了模态对话框之后,不需要还原原窗口的话,可以不加最后一句~~