标签:hwnd return wm_paint bsp case 代码 ase 坐标 bottom
Ellipse() 函数可以用来绘制椭圆,它的原型为:
BOOL Ellipse、(http://www.amjmh.com/v/)
HDC hdc, //设备环境句柄
int nLeftRect, //左上角x坐标
int nTopRect, //左上角y坐标
int nRightRect, //右下角x坐标
int nBottomRect //右下角y坐标
);
1
2
3
4
5
6
7
注意:当 nRightRect - nLeftRect = nBottomRect - nRightRect 时绘制出的是一个圆。
示例代码:
case WM_PAINT:
hdc = BeginPaint(hwnd, &ps);
Ellipse(hdc, 20, 20, 180,90);
EndPaint(hwnd, &ps);
return 0 ;
---------------------
标签:hwnd return wm_paint bsp case 代码 ase 坐标 bottom
原文地址:https://www.cnblogs.com/ly570/p/11304710.html