CMDIFrameWndEx::TabbedDocumentToControlBar
도킹 창에 지정 된 탭된 문서를 변환합니다.
virtual BOOL TabbedDocumentToControlBar(
CMDIChildWndEx* pMDIChildWnd
);
매개 변수
- pMDIChildWnd
도킹 창을 포함 하는 MDI 자식 창에 대 한 포인터입니다.
반환 값
TRUE메서드가 성공 하면 FALSE 에서 오류가 발생 합니다.
설명
도킹 창에 탭된 문서를 변환 하려면이 메서드를 사용 합니다.탭된 문서를 사용 하 여 만들어져 있어야 합니다 CMDIFrameWndEx::ControlBarToTabbedDocument.
예제
다음 예제를 보여 줍니다 어떻게 TabbedDocumentToControlBar 에 사용 되는 VisualStudioDemo 샘플: Visual Studio MFC 응용 프로그램.
void CMainFrame::OnMdiTabbedDocument()
{
CMDIChildWndEx* pMDIChild = DYNAMIC_DOWNCAST(CMDIChildWndEx, MDIGetActive());
if (pMDIChild == NULL)
{
ASSERT(FALSE);
return;
}
TabbedDocumentToControlBar(pMDIChild);
}
요구 사항
헤더: afxMDIFrameWndEx.h