怎么让MFC初始运行时候显示不同的对话框
在MFC中我定义了几个对话框,运行后显示的是创建的第一个对话框。但是我想让它刚刚运行时候弹出的是另一个对话框,怎么做?...
在MFC中我定义了几个对话框,运行后显示的是创建的第一个对话框。但是我想让它刚刚运行时候弹出的是另一个对话框,怎么做?
展开
3个回答
展开全部
如果你的是 MFC基于对话框的工程,在工程 .cpp中可以控制对话框出现的先后顺序。
例如:
#ifdef _AFXDLL
Enable3dControls();// Call this when using MFC in a shared DLL
#else
Enable3dControlsStatic();// Call this when linking to MFC statically
#endif
【这个地方可以添加其他的对话框,顺序执行代码】
C工程 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
}
例如:
#ifdef _AFXDLL
Enable3dControls();// Call this when using MFC in a shared DLL
#else
Enable3dControlsStatic();// Call this when linking to MFC statically
#endif
【这个地方可以添加其他的对话框,顺序执行代码】
C工程 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
}
展开全部
包含另一个对话框的头文件,在第一个对话框的oninital函数里先显示第二个
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
在初始化过程中实例要显示的对话框对象,就可以了。
更多追问追答
追问
太抽象了
追答
做MFC前,要理解MFC框架。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询