DBILITY

독거 가능성 100% 노후에 라면값이라도 하게 센스를 발휘합시다!😅
Please click on the ad so that I can pay for ramen in my old age!
点击一下广告,让老后吃个泡面钱吧!
老後にラーメン代だけでもするように広告を一回クリックしてください。

CMainFrame 가운데 정렬 본문

C

CMainFrame 가운데 정렬

DBILITY 2019. 1. 2. 12:00
반응형

MainFrame.cpp의 PreCreateWindow 함수에서 처리해 봤다. SetWindowPos를 사용할 수 도 있다.

	CRect rect;
	CWnd::GetDesktopWindow()->GetWindowRect(&rect);

	cs.cx = 800;
	cs.cy = 600;
	cs.x = (rect.Width() - cs.cx) / 2;
	cs.y = (rect.Height() - cs.cy) / 2;
	cs.style &= ~WS_THICKFRAME; // 창크기 조절제거
반응형

'C' 카테고리의 다른 글

C 초기화의 중요성?  (0) 2019.06.14
C console program example  (0) 2019.06.05
GetKeyState  (0) 2019.01.04
WIN32 윈도우 생성 및 메시지처리 이해  (0) 2019.01.04
주요 Message  (0) 2018.02.13
Comments