OpenfileDialog选择照片的简单应用
Posted 首席包工头
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了OpenfileDialog选择照片的简单应用相关的知识,希望对你有一定的参考价值。
OpenFileDialog openFileDlg = new OpenFileDialog(); openFileDlg.Title = "选择文件"; openFileDlg.Multiselect = false; openFileDlg.InitialDirectory=Environment.GetFolderPath(Environment.SpecialFolder.Desktop);//设置默认路径为桌面 openFileDlg.Filter = "(*.jpg,*.png,*.jpeg,*.bmp,*.gif)|*.jgp;*.png;*.jpeg;*.bmp;*.gif|All files(*.*)|*.*"; //设置多文件格式 if (openFileDlg.ShowDialog() == DialogResult.OK) { String filePath = openFileDlg.FileName; this.pictureBox1.SizeMode = PictureBoxSizeMode.StretchImage; this.pictureBox1.ImageLocation = filePath;//选择照片后在PictureBox中显示 }
以上是关于OpenfileDialog选择照片的简单应用的主要内容,如果未能解决你的问题,请参考以下文章
OpenFileDialog的使用-----C#程序设计 01