vc中基于对话框的程序中,怎么实现按一个按钮,之后打开一个新对话框并关闭原来的,把代码写在哪?

 我来答
匿名用户
2011-07-20
展开全部
最简便的方法就是:
定义一全局变量int flag;
然后在InitInstance()里(即在主对话框没显示之前的函数里)

flag=0;

while(flag>=0)
{

if(flag==0)
{
CIceDispImgDlg dlg;
m_pMainWnd = &dlg;
int nResponse = dlg.DoModal();
if (nResponse == IDOK)
{
// TODO: Place code here to handle when the dialog is
// dismissed with OK
}
else if (nResponse == IDCANCEL)
{
// TODO: Place code here to handle when the dialog is
// dismissed with Cancel
}
}
else if(flag ==1)
{
CIceNewDlg dlg;
m_pMainWnd = &dlg;
int nResponse = dlg.DoModal();
if (nResponse == IDOK)
{
// TODO: Place code here to handle when the dialog is
// dismissed with OK
}
else if (nResponse == IDCANCEL)
{
// TODO: Place code here to handle when the dialog is
// dismissed with Cancel
}
}
else
{
break;
}

}

在互相调用前,设置flag=0或=1,然后退出本身对话框即可
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式