获取设备环境句柄:
一:
hdc = BeginPaint(hwnd,&ps);
//GDI函数
EndPaint(hwnd,&ps);
二:
hdc = GetDC(hwnd);
//GDI函数
ReleaseDC(hwnd, hdc);
TextOut 可以绘制指定字符串到指定位置。
获取设备环境句柄:
一:
hdc = BeginPaint(hwnd,&ps);
//GDI函数
EndPaint(hwnd,&ps);
二:
hdc = GetDC(hwnd);
//GDI函数
ReleaseDC(hwnd, hdc);
TextOut 可以绘制指定字符串到指定位置。