如何在mfc中动态创建domodal对话框?
我静态创建了两个对话框。
CParentDailog
CMyDailog
然后
CParentDailog
{
CMyDailog *l_pdailog;
}
在 CParentDailog 的 oninitdailog 中查看
l_pdailog = new CMyDailog();
l_pdailog ->create(ID_DAILG1); // this is id of CMyDailog
l_pdailog ->Domodal(); // crashing at this point
为什么它崩溃了?
i have created two dailog box statically.
CParentDailog
CMyDailog
and then
CParentDailog
{
CMyDailog *l_pdailog;
}
in oninitdailog of CParentDailog ia mdoing
l_pdailog = new CMyDailog();
l_pdailog ->create(ID_DAILG1); // this is id of CMyDailog
l_pdailog ->Domodal(); // crashing at this point
why it is crashing?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您好,您需要设置父窗口:
Hi you need to set parent window: