首页 > Windows开发 > 详细

Window Form 父子窗体相互更新

时间:2018-06-23 12:13:43      阅读:226      评论:0      收藏:0      [点我收藏+]

主窗体

public partial class Form1 : Form
{
public Form1()
{
//LoginForm dlg = new LoginForm();
//dlg.StartPosition = FormStartPosition.CenterParent;
//dlg.ShowDialog();
InitializeComponent();
//this.StartPosition = FormStartPosition.CenterScreen;
}

//父窗体定义委托和事件
public delegate void changetxt(string text);
public event changetxt changeStxt_event;
private void button1_Click(object sender, EventArgs e)
{
Form2 frm = new Form2(this);//传递窗体1指针
//子窗体订阅事件
frm.changeFtext_event += new Form2.changetext(frm_changetext_event);
frm.StartPosition = FormStartPosition.CenterScreen;
frm.Show(this);//窗体不会置于父窗体的外边
}

void frm_changetext_event(string text)
{
textBox1.Text = text;
}

private void button2_Click(object sender, EventArgs e)
{
changeStxt_event(textBox1.Text);
}
}

子窗体

public partial class Form2 : Form

{
public Form2(Form1 frm)
{
InitializeComponent();
//订阅事件
frm.changeStxt_event += new Form1.changetxt(frm_changeStxt_event);
}

//子窗体定义委托事件
public delegate void changetext(string text);
public event changetext changeFtext_event;
//更新方法
void frm_changeStxt_event(string text)
{
textBox1.Text = text;
}

private void button1_Click(object sender, EventArgs e)
{
changeFtext_event(textBox1.Text);
}
}

 

Window Form 父子窗体相互更新

原文:https://www.cnblogs.com/hbgjh/p/9216626.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!