VS2015编写2个属性页的对话框,用DoModal()显示正常,但是用Create却不显示。这是为什么?
CPropertySheet sheet(_T("属性页对话框"));
CDialog1 Page1;
CDialog2 Page2;
sheet.AddPage(&Page1);
sheet.AddPage(&Page2);
// sheet.DoModal();
sheet.Create(this, WS_CHILD | WS_VISIBLE, WS_EX_CONTROLPARENT);
RECT rect;
sheet.GetWindowRect(&rect);
int nWidth = rect.right - rect.left;
int nHeight = rect.bottom - rect.top;
sheet.SetWindowPos(NULL, 120, 150, nWidth, nHeight, SWP_NOSIZE | SWP_NOZORDER | SWP_NOACTIVATE);
sheet.ShowWindow(TRUE);

VC++实现属性页对话框的问题
- 写回答
- 好问题 0 提建议
- 关注问题
- 邀请回答
-