CFileDialog dlg(TRUE,NULL,NULL, PFN_HIDEREADONLY|OFN_OVERWRITEPROMPT,_t("图片文件(*.jpg;*.jpeg;*.*)|*.jpg;*.jpeg;*.*"));
if(IDOK==dlg.DoModal())
{
strPicPath.Format("_T(%s)",dlg.GetPathName());
}
CDC *pDC=GetDC();
Graphics g(pDC->m_hDC);
g.clear(Color::White);
g.SetPageUnit(Unit::UnitPixel);
Image* m_pImage;
m_pImage=Image::FromFile(strPicPath.AllocSysString());
g.DrawImage(m_pImage,0,0);