首页 > 其他分享 >对话框加载bmp为背景

对话框加载bmp为背景

时间:2022-12-22 19:03:00浏览次数:43  
标签:对话框 dcMem dc bitmap bmp bmpBackground rect 加载


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

相关文章