MFC 对话框显示问题
我使用 CPropertySheet 基类创建类,使用显示此对话框
d.DoModal()
,它冻结了我的应用程序。我可以异步执行我的对话框吗?
d.ShowWindow(SW_NORMAL)
不起作用。
I create class with base class of CPropertySheet, show this dialog using
d.DoModal()
and it freezes my application. Can I execute my dialog asynchronously?
d.ShowWindow(SW_NORMAL)
doesn't work.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要使用 CPropertySheet::Create异步使用对话框。 http://support.microsoft.com/kb/146916 上还有一些提示。
You need to use CPropertySheet::Create to use the dialog asynchronously. There's also some hints at http://support.microsoft.com/kb/146916 .