CMDIChildWnd::MDIDestroy
MDI 子ウィンドウを破棄するには、このメンバー関数を呼び出します。
void MDIDestroy( );
解説
このメンバー関数は、フレーム ウィンドウから子ウィンドウのタイトルを削除し、子ウィンドウを非アクティブ化します。
使用例
// CMainFrame::OnCloseWindow() is a menu command handler for
// CMainFrame class, which in turn is a CMDIFrameWnd-derived
// class. It closes and destroys the current active MDI child window.
void CMainFrame::OnCloseWindow()
{
CMDIChildWnd* child = MDIGetActive();
if (child)
child->MDIDestroy();
}
必要条件
ヘッダー: afxwin.h