void CXXXDlg::OnPaint()
{
// CPaintDC dc(this); // device context for painting
CPaintDC dc(this);
CRect rect;
GetClientRect(&rect);
CDC dcMem;
dcMem.CreateCompatibleDC(&dc);
CBitmap bmpBackground;
bmpBackground.LoadBitmap(IDB_BG);//IDB_BG为资源文件添加的BMP图像 ID,图像尺寸应该与对话框大小一致(system 12,1:2)
BITMAP bitmap;
bmpBackground.GetBitmap(&bitmap);
CBitmap *pbmpOld=dcMem.SelectObject(&bmpBackground);
dc.StretchBlt(0,0,rect.Width(),rect.Height(),&dcMem,0,0,
bitmap.bmWidth,bitmap.bmHeight,SRCCOPY);
}
还有很多方法,自己编写一个类实现也可以。
标签:对话框,dcMem,dc,bitmap,bmp,bmpBackground,rect,加载 From: https://blog.51cto.com/u_15045304/5963108