<pre>
#include<Windows.h>
#include<process.h>
LRESULT CALLBACK WndProc(HWND hwnd,UINT message,WPARAM wParam,LPARAM lParam);
HWND hwnd;
int clientx,clienty;
int WINAPI WinMain(HINSTANCE hInstance,HINSTANCE hPrevInstance,PSTR szCmdLine,int iCmdShow)
{
static TCHAR szAppName[]=TEXT("hello");
MSG msg;
WNDCLASS wndclass;
wndclass.style=CS_HREDRAW|CS_VREDRAW;
wndclass.hInstance=hInstance;
wndclass.cbClsExtra=0;
wndclass.cbWndExtra=0;
wndclass.hbrBackground=(HBRUSH)GetStockObject(WHITE_BRUSH);
wndclass.hCursor=LoadCursor(NULL,IDC_ARROW);
wndclass.hIcon=LoadIcon(NULL,IDI_APPLICATION);
wndclass.lpfnWndProc=WndProc;
wndclass.lpszClassName=szAppName;
wndclass.lpszMenuName=NULL;
if(!RegisterClass(&wndclass))
{
MessageBox(NULL,TEXT("this program requires windows NT"),TEXT("wrong"),MB_ICONERROR);
return 0;
}
hwnd=CreateWindow(szAppName,TEXT("random rectangles"),
WS_OVERLAPPEDWINDOW,
100,100,800,600,
NULL,NULL,hInstance,NULL);
ShowWindow(hwnd,iCmdShow);
UpdateWindow(hwnd);
while(GetMessage(&msg,NULL,0,0))
{
TranslateMessage(&msg);
DispatchMessage(&msg);
}
return msg.wParam;
}
VOID Thread(PVOID pvoid)
{
HBRUSH hbrush;
HDC hdc;
int xleft,xright,ytop,ybottom,ired,igreen,iblue;
while(TRUE)
{
if(clientx!=0||clienty!=0)
{
xleft=rand()%clientx;
xright=rand()%clientx;
ytop=rand()%clienty;
ybottom=rand()%clienty;
ired=rand()%255;
igreen=rand()%255;
iblue=rand()%255;
hdc=GetDC(hwnd);
hbrush=CreateSolidBrush(RGB(ired,igreen,iblue));
SelectObject(hdc,hbrush);
Rectangle(hdc,min(xleft,xright),min(ytop,ybottom),max(xleft,xright),max(ytop,ybottom));
ReleaseDC(hwnd,hdc);
DeleteObject(hbrush);
}
}//while
}
LRESULT CALLBACK WndProc(HWND hwnd,UINT message,WPARAM wParam,LPARAM lParam)
{
switch(message)
{
case WM_CREATE:
_beginthread(Thread,0,NULL);
return 0;
case WM_SIZE:
clientx=LOWORD(lParam);
clienty=HIWORD(lParam);
return 0;
case WM_DESTROY:
PostQuitMessage(0);
return 0;
}
return DefWindowProc(hwnd,message,wParam,lParam);
}
<code>
我不知道程序顶部的变量clientx和clienty如何在程序运行时得到它们的值...因为我在程序中没有看到任何值赋值....我曾经调试过它在我的visual studio 2010中,当它运行到“ShowWindow(hwnd,iCmdShow);”在WinMain()中时,clientx和clienty得到了它们的值(735和654随机......)。但在此之前,clientx和clienty两者都是“0”。我很困惑~~非常感谢~~~:)
答案 0 :(得分:0)
我想你问为什么clientx
和clienty
在未明确初始化为零时都为零值。
全局变量clientx
和clienty
具有静态存储持续时间。如果没有显式初始化具有静态存储持续时间的变量(来自 6.7.8初始化的C99标准部分):
答案 1 :(得分:0)
客户端x和客户端y初始化为零(如hmjd所述),因为它们是全局的。
当应用程序打开时,Windows会向窗口过程发送一条WM_RESIZE消息,告诉它窗口有多大(如果用户调整窗口大小,则会再次发送此消息)。在底部附近,您可以看到根据RESIZE消息的参数设置clientx和clienty的代码 - 实际上它们是客户端窗口的高度和宽度(以像素为单位)。
答案 2 :(得分:-1)
这些值来自您之前的会话。当您关闭顶级窗口时,Windows会记住它的大小和位置。
http://support.microsoft.com/kb/235994
Windows保存了关闭窗口的大小和位置信息 以下注册表位置: HKEY_CURRENT_USER \软件\微软\的Windows \ CurrentVersion \ Explorer中\流
Windows保存最多28种不同的大小和位置信息 windows。每个窗口的大小和位置参数都存储在一个 Streams键的子键。