15,980
社区成员




CClientDC dc(this);
CRect rect;
GetClientRect(&rect);
Graphics graph(dc.m_hDC);
graph.SetInterpolationMode(InterpolationModeHighQualityBicubic);
Image bk(m_path2);
graph.DrawImage(&bk,RectF(rect.left,rect.top,rect.Width(),rect.Height()));
graph.ReleaseHDC(dc.m_hDC);
DeleteDC(dc.m_hDC);