void Cconnectionstatus::showimg(char* imgpath,int n)
{
if (finder.FindFile(imgpath))//判断文件是否有效
{
CRect rect;
m_status[n].GetClientRect(&rect);//m_status[n]为控件变量
CImage img;
img.Load(imgpath);
CDC* pDC = m_status[n].GetWindowDC();
img.Draw(pDC->GetSafeHdc(),rect);
ReleaseDC(pDC);
}
}
调用showimg(fileimgpath.GetBuffer(),2);// 变量 fileimgpath 为CString