共用方式為


CMDIFrameWndEx::TabbedDocumentToControlBar

將指定的索引標籤式文件加入至停駐窗格。

virtual BOOL TabbedDocumentToControlBar(
   CMDIChildWndEx* pMDIChildWnd 
);

參數

  • pMDIChildWnd
    指標至包含停駐窗格的 MDI 子視窗。

傳回值

TRUE ,如果方法成功,會失敗的 FALSE 。

備註

使用這個方法會將一個的索引標籤式文件加入至停駐窗格。 必須使用建立 CMDIFrameWndEx::ControlBarToTabbedDocument,這個索引標籤式文件。

範例

下列範例示範如何使用 TabbedDocumentToControlBarVisualStudioDemo 範例:MFC Visual Studio 應用程式

void CMainFrame::OnMdiTabbedDocument()
{
    CMDIChildWndEx* pMDIChild = DYNAMIC_DOWNCAST(CMDIChildWndEx, MDIGetActive());
    if (pMDIChild == NULL)
    {
        ASSERT(FALSE);
        return;
    }

    TabbedDocumentToControlBar(pMDIChild);
}

需求

標題: afxMDIFrameWndEx.h

請參閱

參考

CMDIFrameWndEx 類別

階層架構圖