显示图像

CClientDC dc(this);
    CDC *pDC=GetDC();
    CBitmap kevin;
    CRect rect;
    kevin.LoadBitmap(IDB_BITMAP3);
    CDC dcCompatible;
    dcCompatible.CreateCompatibleDC(pDC);
    dcCompatible.SelectObject(&kevin);
 //   GetClientRect(&rect);
    pDC->BitBlt(0,0,Width(),Height(),&dcCompatible,0,0,SRCCOPY);

你可能感兴趣的:(显示图像)