首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > VC/MFC >

请教怎么在对话框上的控件上画图,比如说picture控件

2014-04-26 
请问如何在对话框上的控件上画图,比如说picture控件请问如何在对话框上的控件上画图,比如说picture控件[解

请问如何在对话框上的控件上画图,比如说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就可以了

热点排行