Notice
Recent Posts
Recent Comments
LuvSea
작업영역 본문
336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
#include<windows.h>
#include<stdlib.h>
#include<time.h>
....<중략>....
LRESULT CALLBACK WndProc(HWND hWnd,UINT iMessage,WPARAM WParam,LPARAM lParam)
{
HDC hdc;
PAINTSTRUCT ps;
static RECT rt;
switch(iMessage)
{
case WM_CREATE:
GetClientRect(hWnd,&rt);
return 0;
case WM_PAINT:
hdc = BeginPaint(hWnd,&ps);
SetTextAlign(hdc,TA_CENTER); //텍스트를 윈도우 중앙에 위치
TextOut(hdc,rt.right/2,rt.bottom/2,TEXT("작업영역 표시"),18);
EndPaint(hWnd,&ps);
return 0;
case WM_DESTROY:
PostQuitMessage(0);
return 0;
}
return(DefWindowProc(hWnd,iMessage,WParam,lParam));
}
'sTudy' 카테고리의 다른 글
Brush, Pen 응용 (0) | 2009.07.06 |
---|---|
Gdiobject (0) | 2009.07.06 |
타이머를 이용한 애니메이션 (0) | 2009.07.06 |
타이머를 이용한 시계 (0) | 2009.07.06 |
키 입력과 무효 영역 (0) | 2009.07.06 |
Comments