C#如何将webfrom1中的数据,依次在wenfrom2中的各国对应的textbook中显示
展开全部
使用委托:
首先在from2中定义也有返回值的 委托,在点击事件中触发调用委托,
public delegate string Delegatetxt();
public Delegatetxt dele;
private void button1_Click(object sender, EventArgs e)
{
this.textBox1.Text= dele();
}
from1中
//挂接事件返回from1中的是数据(如果要调用的值比较多可以考虑拼接成字符串,然后再from2中进行分割获取,也可以在考虑委托的返回值string.)
private void button1_Click(object sender, EventArgs e)
{
Form2 fr = new Form2();
fr.dele += new Form2.Delegatetxt(showtex);
fr.ShowDialog();
}
//事件订阅
public string showtex()
{
return this.textBox1.Text;
}
首先在from2中定义也有返回值的 委托,在点击事件中触发调用委托,
public delegate string Delegatetxt();
public Delegatetxt dele;
private void button1_Click(object sender, EventArgs e)
{
this.textBox1.Text= dele();
}
from1中
//挂接事件返回from1中的是数据(如果要调用的值比较多可以考虑拼接成字符串,然后再from2中进行分割获取,也可以在考虑委托的返回值string.)
private void button1_Click(object sender, EventArgs e)
{
Form2 fr = new Form2();
fr.dele += new Form2.Delegatetxt(showtex);
fr.ShowDialog();
}
//事件订阅
public string showtex()
{
return this.textBox1.Text;
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询