摘要: 查看代码 #include <Windows.h> //画点 void PaintSetPixel(HDC hdc) { for (short i = 0; i < 20; i++) { SetPixel(hdc, 30, 30 + i, RGB(0, 0, 255)); } } //画线 void 阅读全文
posted @ 2023-01-04 15:33 caoruipeng 阅读(364) 评论(0) 推荐(1)