MFC如何给对话框设置背景图片

OnPaint() 
{
CPaintDC dc(this); // device context for painting

// TODO: Add your message handler code here
CBitmap   bitmap;   
CRect   rect;    
GetClientRect(&rect);    //获取对话框长宽        
CDC   dcBmp;             //定义并创建一个内存设备环境  
dcBmp.CreateCompatibleDC(&dc);             //创建兼容性DC  
CBitmap   bmpBackground;     
bmpBackground.LoadBitmap(IDB_LOGIN_BITMAP);    //载入资源中图片 ,为bmp格式
BITMAP   m_bitmap;                         //图片变量                 
bmpBackground.GetBitmap(&m_bitmap);         
//将位图选入临时内存设备环境  
CBitmap  *pbmpOld=dcBmp.SelectObject(&bmpBackground);  
//调用函数显示图片StretchBlt显示形状可变  

dc.StretchBlt(0,0,rect.Width(),rect.Height(),&dcBmp,0,0,m_bitmap.bmWidth,m_bitmap.bmHeight,SRCCOPY); 

你可能感兴趣的:(MFC如何给对话框设置背景图片)