今天这个问题好像回答过,最简单的办法:原对话框那个按钮设置为OnOK() //这样点击就关闭了在原对话框的DoModal()处,这样处理 int nResponse = dlg.DoModal();//创建模态对话框,这里就开始显示了。 if (nResponse == IDOK) { // TODO: Place code here to handle when the dialog is dlg2.DoModal(); //这里新对话框就弹出了 }