c#子窗体怎么向父窗体传值?
我在网上找到很多代码都是将form2的textbox值传递给form1的textbox,但是怎么传递给form1中的string a; 展开
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace 传值练习
{
public partial class Form1 : Form
友扮笑 {
public Form1()
{
InitializeComponent();
}
//1、利用构造函数由父窗体向子窗体传值
private void button1_Click(object sender, EventArgs e)
{
Form2 f2 = new Form2(this.textBox1.Text);
f2.Show();
好含 }
//利用方法由子窗体向父窗体传值
public void chuanzhi(string data)
{
this.textBox1.Text = data;
}
}
}
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace 传值练习
{
public partial class Form2 : Form
{
public Form2()
{
InitializeComponent();
}
//1、利用构造函缺橡数由父窗体向子窗体传值
public Form2(string name)
{
InitializeComponent();
this.textBox1.Text = name;
}
方法二:可以创建一个类誉团,在该类中定义一个属性来接收form2中的textbox的值,然后在form1中将这个类中的属庆盯橘性赋给变量a。
以上这两种方法,你可以试试。
public string a{get;set}
form1()
{
...
form2 f2 = new form2();
f2.FatherForm = this;
f2.Show();
}
form2:桥团悉并
public form1 FatherForm{get;set;}
form2()
{
.....
FatherForm.a = textbox1.Text;
}
2.定义一个用来传值的方法;
在load定义一个私有的string byvalue
然后写一个共有方法;
public string Byvalue
{
get{}
set{}
}
get set方法就消橘自己写了,备橡学c#的这应该知道吧,真不行hi我拿滚团