<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 和客户端在程序运行时如何获得它们的值 s......因为我在程序中没有看到任何值分配....我曾经在我的Visual Studio 2010中调试它,当它运行到"ShowWindow(hwnd,iCmdShow);"在WinMain()中,clientx和clienty得到了它们的值(735和654随机...)。但在此之前,clientx 和 clienty 都是"0"。我很困惑~~非常感谢~~~ :)
我想你在问为什么clientx
和clienty
都没有明确初始化为零时都有值零。
全局变量(如 clientx
和 clienty
)具有静态存储持续时间。如果具有静态存储持续时间的变量未显式初始化(来自第 6.7.8 节 C99 标准的初始化):
- 如果它具有指针类型,则将其初始化为空指针;
- 如果它具有算术类型,则将其初始化为(正数或无符号)零;
- 如果是聚合,则根据这些规则(递归)初始化每个成员;
- 如果是联合,则根据这些初始化(递归)第一个命名成员规则。
客户端x和客户端y初始化为零(如hmjd所述),因为它们是全局的。
当应用程序打开时,Windows 会向窗口过程发送一条WM_RESIZE消息,告知它窗口有多大(如果用户调整窗口大小,则会再次发送此消息)。在底部附近,您可以看到根据 RESIZE 消息的参数设置 clientx 和 clienty 的代码 - 本质上它们是客户端窗口的高度和宽度(以像素为单位)。
这些值来自您之前的会话。关闭顶级窗口时,Windows 会记住其大小和位置。
http://support.microsoft.com/kb/235994
窗口将关闭窗口的大小和位置信息保存在 以下注册表位置: HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Streams
Windows 保存多达 28 个不同大小和位置信息 窗户。每个窗口的大小和位置参数都存储在 流密钥的子项。