CreateWindow createwindowstation

#include<windows.h>

#include"stdafx.h"

#include<stdio.h>// sprintf(szChar,"char is %d",wParam)

LRESULT CALLBACKWinSunProc(//定义回调函数。

HWNDhwnd,// handle to window

UINTuMsg,// message identifier

WPARAMwParam, // first message parameter

LPARAMlParam // second messageparameter

);

int WINAPI WinMain(

HINSTANCEhInstance,// handle to current instance

HINSTANCEhPrevInstance, // handle toprevious instance

LPSTRlpCmdLine,// command line

intnCmdShow// show state

)

{

WNDCLASS wndcls; //定义窗口类

wndcls.cbClsExtra=0; //以下初始化定义的窗口类

wndcls.cbWndExtra=0;

wndcls.hbrBackground=(HBRUSH)GetStockObject(WHITE_BRUSH);

wndcls.hCursor=LoadCursor(NULL,IDC_ARROW);

wndcls.hIcon=LoadIcon(NULL,IDI_WINLOGO);

wndcls.hInstance=hInstance;

wndcls.lpfnWndProc=WinSunProc;

wndcls.lpszClassName="Weixin2003";

wndcls.lpszMenuName=NULL;

wndcls.style=CS_HREDRAW | CS_VREDRAW;

RegisterClass(&wndcls); //注册初始化的窗口类

HWND hwnd; //定义一个句柄,把生成的窗口句柄赋给hwnd;

hwnd=CreateWindow("Weixin2003","This is my test !",WS_OVERLAPPEDWINDOW,

0,0,600,400,NULL,NULL,hInstance,NULL); //根据初始化的窗口类,创建该窗口。并把句柄赋给hwnd。

ShowWindow(hwnd,SW_SHOWNORMAL); // 显示窗口。

UpdateWindow(hwnd); 跟新窗口。

MSG msg; // 定义消息。

while(GetMessage(&msg,NULL,0,0))

{

TranslateMessage(&msg);// 转化翻译消息。

DispatchMessage(&msg);// 发送派送消息。

}

return 0;

}

//回调函数

LRESULT CALLBACK WinSunProc( HWNDhwnd,// handle to window

UINTuMsg,// message identifier

WPARAM wParam, //first message parameter

LPARAMlParam // second messageparameter

)

{

switch(uMsg) //根据接受的信息做相应的动作。

{

case WM_CHAR: // 键盘按下

char szChar[20];

memset(szChar,'',20); //初始化szChar[20];

sprintf(szChar,"char is %d",wParam); //wParam 中存放的是按下的键盘的ASIC码值。Check sprintf?

MessageBox(hwnd,szChar,"MSG标题",0);

break;

case WM_LBUTTONDOWN: //鼠标左键按下

MessageBox(hwnd,"mouse clicked","weixin",0);

HDC hdc;

hdc=GetDC(hwnd);

TextOut(hdc,0,50,"This is my test ! ",strlen("This is my test !"));

ReleaseDC(hwnd,hdc);

break;

case WM_PAINT: //窗口重绘

HDC hDC;

PAINTSTRUCT ps;

hDC=BeginPaint(hwnd,&ps);

TextOut(hDC,200,200,"这里每次都会刷新",strlen("这里每次都会刷新"));

CreateWindow createwindowstation

EndPaint(hwnd,&ps);

break;

case WM_CLOSE: // 关闭窗口

// WM_DESTROY 是关闭程序的

// WM_CLOSE 是关闭窗口的

// WM_QUIT 是关闭消息环的

if(IDYES==MessageBox(hwnd,"是否真的结束?","weixin",MB_YESNO))

{

DestroyWindow(hwnd);

}

break;

case WM_DESTROY: // 单击Close按钮

PostQuitMessage(0);

break;

default:

return DefWindowProc(hwnd,uMsg,wParam,lParam); // 其他的交给系统默认处理。

}

return 0;

}

*********************************************************************************************************************************

  

爱华网本文地址 » http://www.aihuau.com/a/25101017/366606.html

更多阅读

0xC0000005错误 0xc0000005

http://blog.chinaunix.net/u/28781/showart_1074025.html试程序的是否发现一到这个就出错hWnd = CreateWindow(szWindowClass, szTitle, WS_VISIBLE,CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, NULL, NULL, hIn

CreateWindow_ShowWindow_UpdateWindow函数 js showwindow函数

CreateWindow(DWORD dwExStyle,//扩展的窗口类型LPCSTR lpClassName,//注册的窗口类型名称LPCSTR lpWindowName,//窗口名称DWORD dwStyle,//窗口类型int X,//窗口左上角位置int Y,//窗口左上角位置int nWidth,//窗口的宽度

声明:《CreateWindow createwindowstation》为网友帅气藏进风衣里分享!如侵犯到您的合法权益请联系我们删除