大家帮忙看一下以下的C++程序,在编译时并没有任何错误,可是运行时只在后台运行并不显示窗口,不知道是怎么回事?下面是源程序:
#include<windows.h>
#include<stdio.h>
//¹ý³Ìº¯ÊýµÄÉùÃ÷
LRESULT CALLBACK WinSunProc(
HWND hwnd, // handle to window
UINT uMsg, // message identifier
WPARAM wParam, // first message parameter
LPARAM lParam // second message parameter
);
//Èë¿Úº¯Êý
int WINAPI WinMain(
HINSTANCE hInstance, // handle to current instance
HINSTANCE hPrevInstance, // handle to previous instance
LPSTR lpCmdLine, // command line
int nCmdShow // show state
)
{
//Éè¼Æ´°¿ÚÀà
WNDCLASS wndcls;
wndcls.cbClsExtra=0;
wndcls.cbClsExtra=0;
wndcls.hbrBackground=(HBRUSH)GetStockObject(DKGRAY_BRUSH);
wndcls.hCursor=LoadCursor(NULL,IDC_CROSS);
wndcls.hIcon=LoadIcon(NULL,IDI_ERROR);
wndcls.hInstance=hInstance;
wndcls.lpfnWndProc=WinSunProc;
wndcls.lpszClassName="weixin2003";
wndcls.lpszMenuName=NULL;
wndcls.style=CS_HREDRAW|CS_VREDRAW;
//×¢²á´°¿ÚÀà
RegisterClass(&wndcls);
//´´½¨´°¿Ú
HWND hwnd;
hwnd=CreateWindow("weixin2003","±±¾©Î¬Ð¿Æѧ¼¼ÊõÅàѵÖÐÐÄ",WS_OVERLAPPEDWINDOW,0,0,600,400,NULL,NULL,hInstance,NULL);
//ÏÔʾ´°¿Ú
ShowWindow(hwnd,SW_SHOWNORMAL);
UpdateWindow(hwnd);
//ÏûϢѻ·¶ÓÁÐ
MSG msg;
while(GetMessage(&msg,NULL,0,0))
{
TranslateMessage(&msg);
DispatchMessage(&msg);
}
return 0;
}
//¹ý³Ìº¯Êý
LRESULT CALLBACK WinSunProc(
HWND hwnd, // handle to window
UINT uMsg, // message identifier
WPARAM wParam, // first message parameter
LPARAM lParam // second message parameter
)
{
switch(uMsg)
{
case WM_CHAR:
char szchar[20];
sprintf(szchar,"char is %d",wParam);
MessageBox(hwnd,szchar,"weixin",0);
break;
case WM_LBUTTONDOWN:
MessageBox(hwnd,"mouse clicked","weixin",0);
HDC hdc;
hdc=GetDC(hwnd);
TextOut(hdc,0,50,"¼ÆËã»ú±à³ÌÓïÑÔÅàѵ",strlen("¼ÆËã»ú±à³ÌÓïÑÔÅàѵ"));
ReleaseDC(hwnd,hdc);
break;
case WM_PAINT:
HDC hDC;
PAINTSTRUCT ps;
hDC=BeginPaint(hwnd,&ps);
TextOut(hDC,0,0,"άÐÂÅàѵ",strlen("άÐÂÅàѵ"));
EndPaint(hwnd,&ps);
break;
case WM_CLOSE:
if(IDYES==MessageBox(hwnd,"ÊÇ·ñÕæµÄ½áÊø£¿","weixin",MB_YESNO))
{
DestroyWindow(hwnd);
}
break;
case WM_DESTROY:
PostQuitMessage(0);
break;
default:
return DefWindowProc(hwnd,uMsg,wParam,lParam);
}
return 0;
}