基本控件的使用
Posted 碎蜂朴
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了基本控件的使用相关的知识,希望对你有一定的参考价值。
如何上传图像:
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;
}
以上是关于基本控件的使用的主要内容,如果未能解决你的问题,请参考以下文章