반응형
방법 1) ShowWindow(SW_MAXIMIZE);
==============================================================================================
방법 2)
//OnInitDialog() 부분에 추가하면 된다.
LONG style = ::GetWindowLong( m_hWnd, GWL_STYLE );
style &= ~WS_CAPTION;
style &= ~WS_SYSMENU;
::SetWindowLong( m_hWnd, GWL_STYLE, style );
int screenx = GetSystemMetrics( SM_CXSCREEN );
int screeny = GetSystemMetrics( SM_CYSCREEN );
// resize:
SetWindowPos( NULL, -4, -4, screenx+8, screeny+4, SWP_NOZORDER );
LONG style = ::GetWindowLong( m_hWnd, GWL_STYLE );
style &= ~WS_CAPTION;
style &= ~WS_SYSMENU;
::SetWindowLong( m_hWnd, GWL_STYLE, style );
int screenx = GetSystemMetrics( SM_CXSCREEN );
int screeny = GetSystemMetrics( SM_CYSCREEN );
// resize:
SetWindowPos( NULL, -4, -4, screenx+8, screeny+4, SWP_NOZORDER );
반응형
'C & C++ > MFC 컨트롤' 카테고리의 다른 글
다이얼로그 작업표시줄에서 감추기기(이중 다이얼로그) (0) | 2013.07.05 |
---|---|
특정 색상을 제외한 투명한 다이얼로그 (0) | 2013.05.07 |
시스템 캡션 깜빡거리게 만들기 (0) | 2012.10.05 |
분할 윈도우(Splitter) (0) | 2012.09.03 |
Tree 와 List 가 합쳐진 트리 (0) | 2012.08.31 |
댓글