标签:string filename 中文 ict 上传 forms ext asp pen
如何上传图像:
1.首先需要向窗体上添加一个openFileDialog控件,该控件的作用是显示一个对话框提示用户打开文件。
2.添加如下代码 :
DialogResult result = openFileDialog1.ShowDialog();
if(result == DialogResult.OK)
{
string fileName = openFileDialog1.FileName;//获得选中文件的文件名的字符串
pictureBox1.Load(fileName);
}
将a窗体上控件的数据显示到b窗体的控件中:
控件类型 变量名 = Application.OpenForms["a窗体名"].Controls["控件名"] as 控件类型;
注意:控件类型一致(包括a窗体控件的类型)
例如:
TextBox text1= Application.OpenForms["Form1"].Controls["textBox1"] as TextBox;
PictureBox picture = Application.OpenForms["Form1"].Controls["pictureBox1"] asPictureBox;
if(text1 != null && picture != null)
{
label6.Text = text1.Text;
pictureBox1.Image = picture.Image;
}
标签:string filename 中文 ict 上传 forms ext asp pen
原文地址:http://www.cnblogs.com/luoyanghao/p/6080515.html