BOOL CMainFrame::PreCreateWindow(CREATESTRUCT& cs)
{
if( !CFrameWndEx::PreCreateWindow(cs) )
return FALSE;
// TODO: Modify the Window class or styles here by modifying
// the CREATESTRUCT cs
cs.hMenu = NULL; //메뉴 제거
cs.style &= ~FWS_ADDTOTITLE; //타이틀 제거
this->SetTitle(_T("splitter 디자인")); //캡션 설정
cs.cx = 900; //창 크기 설정
cs.cy = 700;
return TRUE;
}
'C++' 카테고리의 다른 글
UML class 관계 표기법 (1) | 2011.01.03 |
---|---|
ActiveX Control Test Container : Visual Studio 2008 (0) | 2010.12.09 |
[MFC] CDaoDatabase : DAO (Data Access Object) (2) | 2010.12.09 |
[MFC] 다른 윈도우 찾기 (0) | 2010.12.09 |
[MFC] splitter UI 바꾸기 (0) | 2010.12.09 |
[MFC] CTreeView에 바탕화면 폴더 트리 생성 예제 (0) | 2010.12.03 |
[MFC] 인터넷 HTML 소스 다운로드 (1) | 2010.12.01 |
윈도우 서비스 (service) (0) | 2010.11.25 |