MFC中如何调用基于CFormView的对话框?

2025-04-05 14:48:56
推荐回答(3个)
回答1:

DoMadal()适用于对话框。如果你的应用程序是基于CDocument/View方式的,在你的按钮事件中添加如下代码:
CWinApp* pApp=AfxGetApp();
CString docstr;
POSITION postmp=pApp->GetFirstDocTemplatePosition();
while(postmp!=NULL)
{
CDocTemplate* pdoc=pApp->GetNextDocTemplate(postmp);
docstr=pdoc->GetDocString(docstr,pdoc->fileNewName);
if(docstr=="yourviewresourcename") then
pdoc->OpenDocumentFile(NULL)
}
yourviewresourcename 是你的文档字符串资源表

回答2:

1、VC默认是双击资源视图中的按钮就会进入相应事件代码。

2、如果不行,在头文件定义void OnButtonCommand();

在cpp文件的消息映射中定义ON_BN_CLICKED( ID_YOURBUTTON, OnButtonCommand )

然后实现OnButtonCommand

void CYourDlg::OnButtonCommand()
{
....
你的逻辑
}

回答3:

以下是实现代码:
CView *pView = (CFormView *)(RUNTIME_CLASS(DialogView)->CreateObject());
if(!pView)
{
MessageBox("1", "", MB_OK);
return;
}
CRect crt;
CCreateContext Cnt;

GetClientRect(crt);
Cnt.m_pCurrentDoc = GetDocument();
pView->Create(NULL, NULL, AFX_WS_DEFAULT_VIEW,
crt, this, IDD_DIALOG_VIEW, &Cnt);
pView->ShowWindow(SW_SHOWNORMAL);
pView->MoveWindow(&crt);
------Solutions------
CTabCtrl+CDialog