16,548
社区成员




pBitmap->LoadBitmap(IDB_BITMAP);
other = pMemDC->SelectObject(pBitmap);
BITMAP bmp;
pBitmap->GetBitmap(&bmp);
CRect r;
GetClientRect(&r);
pDC->StretchBlt(0,0,r.right,r.bottom,pMemDC,0,0,bmp.bmWidth,bmp.bmHeight,SRCCOPY);
pMemDC->SelectObject(other);
pBitmap->DeleteObject();