回复 楼主 Sicgl
这很简单,方法如下:
1、打开VC6.0一>插入一>资源一>Bitmap一>引入一>选择想要插入的图片一>确定。
2、在该控件下添加成员函数OnPaint(),然后在OnPaint()函数下添加如下代码:
{
CPaintDc dc(this);
CRect rect;
GetClientRect(&rect);
CDC dcMem;
dcMem.CredteCompatibleDC(&dc);
CBitmap bmpBackground;
bmpBackground.LoadBitmap(IDB_BITMAP);//IDB_BITMAP为自己位图的ID
BITMAP bitmap;
bmpBackground.GetBitmap(&bitmap);
CBitmap*pbmpOld=dcMem.SelectObject(&bmpBackground);
dc.StretchBlt(0,0rect.Width(),rectHeight(),&dcMem,0,0;
bitmap.bmWidth,bitmap.bmHeight,SRCCOPY);
}