本文介绍了在模态对话框上不显示控件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
亲爱的,
我建立了一个默认的对话框项目,并添加了一个对话框,当用户按下确定"按钮时将显示该对话框.
IDD_DIALOG1具有一些按钮和编辑框的控件,但是如果创建模态对话框如下,则它不显示按钮和编辑框:
如果有人知道原因,请给我建议.
Dear,
I built a default dialog project and added one more dialog to display when user presses OK button.
IDD_DIALOG1 has a few controls as button and editbox but it does not display the button and editbox if create modaless dialog as follow:
If somebody know why, please advice me.
void CTestDlg::OnOK()
{
CDlgTest *dlg;
dlg = new CDlgTest(this);
dlg->Create(IDD_DIALOG1, this );
dlg->ShowWindow(SW_SHOW);
Sleep(10000);
dlg->DestroyWindwo();
delete dlg;
}
推荐答案
这篇关于在模态对话框上不显示控件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!