Application에서 시스템 메뉴를 삭제하는 방법은 가장 쉽게는 아래와 같다. BOOL CMainFrame::PreCreateWindow(CREATESTRUCT& cs) { if( !CFrameWnd::PreCreateWindow(cs) ) return FALSE; // TODO: Modify the Window class or styles here by modifying // the CREATESTRUCT cs cs.style &= ~WS_SYSMENU; // 시스템 메뉴 삭제 return TRUE; } 윈도우 스타일에서 SYSMENU를 제거하는 방법이다. 이것은 메뉴 및 버튼 그리고 아이콘까지 모두 삭제하기 때문에 디자인 면에서 좋지 않다. GetSystemMenu(FALSE)->EnableMen..