Win32 - 테두리 없는 빈 윈도우 생성
카테고리 없음 / 2016. 2. 23. 14:43
hwnd=::CreateWindow(TEXT("STATIC"),
lpWindowName,//타이틀바 없는 리사이즈창은 직접 구현해야 한다고 함.
WS_POPUP|WS_VISIBLE,
0,//x
0,//y
w,//CW_USEDEFAULT,//width
h,//CW_USEDEFAULT,//height
0,//hwndParent
0,//hMenu
GetModuleHandle(0),NULL);