模态对话框与非模态对话框的注意事项

注意:
1.创建非模态对话框时dlg.Create(IDD_TEST,this)和dlg.ShowWindow(SW_SHOWNORMAL)要结合使用,如果对话框程序的属性visible=false则单有Create()是无法显示对话框的,在退出程序时时记得调用dlg.DestroyWindow()来关闭非模态对话框。

2.对于模态对话框则调用dlg.DoModal()就行了,
退出程序时调用dlg.EndDialog(int nRetCode)//nRetCode : The value to be returned by DoModal

你可能感兴趣的:(模态对话框)