给对话框添加背景图片

 
给对话框添加背景图片
 
1 把你的图包含到程序的 “Bitmap 资源 里,提示说该资源使用了大于 256 色的调色板,在 VC 里无法编辑等等,点确定就可以 
 
2 定位到  void CXXXDlg::OnPaint() ,在 if()...else() 中的 else() 下添加如下代码  
  else  
  {  
          //CDialog::OnPaint();//
要禁止这个调用  
          CPaintDC   dc(this);  
          CRect   rect;  
          GetClientRect(&rect);  
          CDC   dcMem;  
          dcMem.CreateCompatibleDC(&dc);  
          CBitmap   bmpBackground;  
          bmpBackground.LoadBitmap(IDB_BITMAP);  
                  //IDB_BITMAP
是你自己的图对应的 ID  
          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);  
  }

你可能感兴趣的:(给对话框添加背景图片)