111,120
社区成员
发帖
与我相关
我的任务
分享private void textBox1_TextChanged(object sender, EventArgs e)
{
foreach (Form frm in ((Form)this.MdiParent).MdiChildren)
{
((TextBox)frm.Controls.Find("TextBox1", true)[0]).Text = this.textBox1.Text;
}
}