Dialog based일 때, OnInitDialog() 내에 다음과 같이 작성한다.
RECT m_Rect = {0, 0, 1024, 768}; // 생성하고 싶은 사이즈를 RECT 변수에 초기화. 여기서는 1024x768로 설정하였다.
AdjustWindowRect(&m_Rect, WS_OVERLAPPEDWINDOW, FALSE);
int width = m_Rect.right - m_Rect.left;
int height = m_Rect.bottom - m_Rect.top;
this->SetWindowPos(NULL, 0, 0, width, height, 0);
'MFC' 카테고리의 다른 글
16bit tiff read link (0) | 2013.09.19 |
---|---|
StretchBlt() Parameter 설명 (0) | 2013.03.27 |
GetPrivateProfileString(), WritePrivateProfileString() (0) | 2013.03.25 |
버튼에 이미지 입히기 (0) | 2013.03.11 |
[MFC]Dialog 창 조절 속성 (0) | 2013.02.28 |