如何在mfc中动态创建domodal对话框?

发布于 2024-10-22 12:08:35 字数 375 浏览 1 评论 0原文

我静态创建了两个对话框。

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

贱贱哒 2024-10-29 12:08:35

您好,您需要设置父窗口:

l_pdailog = new CMyDailog(pWndparent);
l_pdailog ->Domodal();

Hi you need to set parent window:

l_pdailog = new CMyDailog(pWndparent);
l_pdailog ->Domodal();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文