如何先后向memDC写入2张Bitmap
CClientDC dc(this);
CDC memDC;
memDC.CreateCompatibleDC(&dc);
memDC.SelectObject(m_cBitmap); // The first bitmap
// Then how to read the second bitmap, When display on the screen,
// it looks like the second image on the frist image surface ?
dc.BitBlt(0, 0, width, height, &memDC, 0, 0, SRCCOPY);