Rectangle 函数可以在窗口上绘制一个矩形,它的原型为:
BOOL Rectangle(
HDC hdc, //设备环境句柄
int nLeftRect, //矩形左上角x坐标
int nTopRect, //矩形左上角y坐标
int nRightRect, //矩形右下角x坐标
int nBottomRect //矩形右下角y坐标
);
1
2
3
4
5
6
7
示例代码:(http://www.my516.com)
case WM_PAINT:
hdc = BeginPaint(hwnd, &ps);
Rectangle(hdc, 50, 50, 150, 150);
EndPaint(hwnd, &ps);
return 0 ;
---------------------