본문 바로가기

Programming/MFC

타이틀바 없애기

 // 타이틀바를 사용하지 않으면 전체 테두리도 사용하지 않게된다.
 long style = ::GetWindowLong( this->m_hWnd, GWL_STYLE ) ;
 style &= ~WS_CAPTION ;
 ::SetWindowLong( this->m_hWnd, GWL_STYLE, style ) ;