基于单文档的VC程序中嵌入对话框实现界面布局

 

 

 
创建单文档的程序时,最后一步基类选择CFormView
 
对话框放置于
 
void CTest3View::OnInitialUpdate()
{
 CFormView::OnInitialUpdate();
 GetParentFrame()->RecalcLayout();
 ResizeParentToFit();

 CDlgUserList* pDlgUserList;
 pDlgUserList = new CDlgUserList(this);
 pDlgUserList->Create(IDD_DIALOG_USERLIST,this);
 pDlgUserList->MoveWindow(10,10,300,400);
 pDlgUserList->ShowWindow(SW_SHOW);
}

你可能感兴趣的:(基于单文档的VC程序中嵌入对话框实现界面布局)