共用方式為


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 類別