C#中的windows窗体如何获取另一个窗体的信息
展开全部
我简单写了下,你看下吧。
第一个Form
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
string str = textBox1.Text;
Form2 fm = new Form2(str);
this.Hide();
fm.ShowDialog();
}
}
}
第二个Form
namespace WindowsFormsApplication1
{
public partial class Form2 : Form
{
string st;
public Form2(string str)
{
InitializeComponent();
st = str;
}
private void Form2_Load(object sender, EventArgs e)
{
textBox1.Text = st;
}
}
}
可以通过构造函数来传值,也可以通过方法传值都行。
第一个Form
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
string str = textBox1.Text;
Form2 fm = new Form2(str);
this.Hide();
fm.ShowDialog();
}
}
}
第二个Form
namespace WindowsFormsApplication1
{
public partial class Form2 : Form
{
string st;
public Form2(string str)
{
InitializeComponent();
st = str;
}
private void Form2_Load(object sender, EventArgs e)
{
textBox1.Text = st;
}
}
}
可以通过构造函数来传值,也可以通过方法传值都行。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |