CWinApp::AddDocTemplate

调用此成员函数添加文档模板到列表可用文档应用程序维护的模板。

void AddDocTemplate(
   CDocTemplate* pTemplate 
);

参数

  • pTemplate
    对要添加的 CDocTemplate 的指针。

备注

在调用 RegisterShellFileTypes之前,应将所有文档模板添加到应用程序。

示例

   // The following code is produced by the Application Wizard when you
   // choose the MDI (multiple document interface) option.
    CMultiDocTemplate* pDocTemplate;
    pDocTemplate = new CMultiDocTemplate(IDR_MYTYPE,
        RUNTIME_CLASS(CMyDoc),
        RUNTIME_CLASS(CChildFrame), // custom MDI child frame
        RUNTIME_CLASS(CMyView));
    if (!pDocTemplate)
        return FALSE;
    AddDocTemplate(pDocTemplate);

要求

Header: afxwin.h

请参见

参考

CWinApp选件类

层次结构图

CWinApp::RegisterShellFileTypes

CMultiDocTemplate选件类

CSingleDocTemplate选件类