MFC|MFC联合中点击打开文件夹找到BMP文件

void CfinalDlg::OnBnClickedButton2()
{
// TODO: 在此添加控件通知处理程序代码
CString strFilePath ;
TCHAR szFilter[] =_T("JPG(*.jpg)|*.jpg|BMP(*.bmp)|*.bmp|ALLSUPORTFILE(*.*)|*.*||");
CFileDialog fileDlg(TRUE,_T("bmp"),NULL,0,szFilter,this);
if(IDOK == fileDlg.DoModal())
{
strFilePath = fileDlg.GetPathName();
}

// cstring类型转HTuple
CStringA StrTemp(strFilePath);
HTuple h_cstr_temp = (LPSTR) StrTemp.GetBuffer();
ReadImage(&ho_Image1,h_cstr_temp.S());
DispObj(ho_Image1, hWndID);
}
MFC|MFC联合中点击打开文件夹找到BMP文件
文章图片

【MFC|MFC联合中点击打开文件夹找到BMP文件】

    推荐阅读