码迷,mamicode.com
首页 > 其他好文 > 详细

绘制矩形

时间:2019-08-05 19:08:27      阅读:112      评论:0      收藏:0      [点我收藏+]

标签:com   amp   pre   环境   ott   case   end   函数   otto   

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 ;
--------------------- 

绘制矩形

标签:com   amp   pre   环境   ott   case   end   函数   otto   

原文地址:https://www.cnblogs.com/ly570/p/11304697.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!