mfc如何点击一个按钮后,在新对话框弹出的同时,原对话框隐藏或关闭
展开全部
今天这个问题好像回答过,最简单的办法:
原对话框那个按钮设置为OnOK() //这样点击就关闭了
在原对话框的DoModal()处,这样处理
int nResponse = dlg.DoModal();//创建模态对话框,这里就开始显示了。
if (nResponse == IDOK)
{
// TODO: Place code here to handle when the dialog is
dlg2.DoModal(); //这里新对话框就弹出了
}
原对话框那个按钮设置为OnOK() //这样点击就关闭了
在原对话框的DoModal()处,这样处理
int nResponse = dlg.DoModal();//创建模态对话框,这里就开始显示了。
if (nResponse == IDOK)
{
// TODO: Place code here to handle when the dialog is
dlg2.DoModal(); //这里新对话框就弹出了
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询