请问如何在对话框上的控件上画图,比如说picture控件
请问如何在对话框上的控件上画图,比如说picture控件
[解决办法]
int StretchDIBits(
HDC hdc, // handle to device context
int XDest, // x-coordinate of upper-left corner of dest. rectangle
int YDest, // y-coordinate of upper-left corner of dest. rectangle
int nDestWidth, // width of destination rectangle
int nDestHeight, // height of destination rectangle
int XSrc, // x-coordinate of upper-left corner of source rectangle
int YSrc, // y-coordinate of upper-left corner of source rectangle
int nSrcWidth, // width of source rectangle
int nSrcHeight, // height of source rectangle
CONST VOID *lpBits, // address of bitmap bits
CONST BITMAPINFO *lpBitsInfo, // address of bitmap data
UINT iUsage, // usage flags
DWORD dwRop // raster operation code
);
这个函数可以在任何窗口上画图。
picture控件有更简单的方法,就是你指定空间的类型"Type"属性,然后在图像"Image"里指
你导入图像的ID就可以了