CMainFrame에서 ClassWizard 로 가상함수 ActivateFrame(int nCmdShow) 추가

void CMainFrame::ActivateFrame(int nCmdShow) 
{
     /* TODO: Add your specialized code here and/or call the baseclass */ 
     nCmdShow=SW_MAXIMIZE;      <-- 코드추가부분.

     CFrameWnd::ActivateFrame(nCmdShow);
}

Related Posts

답글 남기기

이메일 주소는 공개되지 않습니다.