本帖最后由 黄雄斌 于 2012-4-4 18:24 编辑
1.Form1的代码,单击事件
private void button1_Click(object sender, EventArgs e)
{
Form2 f = new Form2(this);
f.ShowDialog();
}
2.设置TextBox的Modifiers为public
3.Form2的代码,重写Form2的实例方法
Form1 f1;
public Form2(Form1 f)
{
InitializeComponent();
f1 = f;
}
private void button1_Click(object sender, EventArgs e)
{
f1.textBox1.Text =this.textBox1.Text;
} |