using (OpenFileDialog ofd = new OpenFileDialog())
{
ofd.Title = "请选择要插入的图片";
ofd.Filter = "JPG图片|*.jpg|BMP图片|*.bmp|Gif图片|*.gif";
ofd.CheckFileExists = true;
ofd.CheckPathExists = true;
ofd.Multiselect = false;
if (ofd.ShowDialog() == DialogResult.OK)
{
path = ofd.FileName;
picHeadImg.ImageLocation = path; //PictureBox
}
else
{
MessageBox.Show("你没有选择图片", "信息提示");
}
}
相关文章
- 09-23python – 当supervisord调用时,Gunicorn会抛出OSError打开文件
- 09-23使用URL打开文件夹
- 09-23python3 不知文件编码情况下打开文件代码记录
- 09-23SVN图形客户端上传静态库.a文件失败
- 09-23基于TIA博途通过Modbuspoll库文件实现多个温控设备的modbus轮询读写操作
- 09-23Python库文件安装失败问题及解决方式汇总-持续更新ing~
- 09-23如何在iPhone和Mac上的Apple Music中打开“同步资料库”?
- 09-23C#流总结(文件流、内存流、网络流、BufferedStream、StreamReader/StreamWriter、TextReader/TextWriter、转载)
- 09-23类库文件引用web服务报错解决方法-在 ServiceModel 客户端配置部分中,找不到引用协定的默认终结点元素
- 09-23awk打开多个文件的方法