DataBindedControls form2 数据绑定到 form1 中的控件 c#语言
2022-01-26 17:39:17 44KB 数据绑定 DataBindedControls
1
C# form1 ,form2 互相传值,form1 textbox 值传到form2 textbox, form2 textbox 值 传给 form1 textbox
2021-11-19 15:39:14 514KB zz aa 2b
1
C# 实现在的两个窗体之间消息的传递过程
2021-10-04 13:00:38 235KB C#多个窗体之间通讯
通过委托实现,初学C#的可参考,借以理解event、EventHandler等; 高级人士勿笑
2021-10-02 18:29:19 39KB Form1 form2 委托
1
Q:Form1上一个Button点击后弹出新窗口Form2,在新窗口点击Button如何控制Form1中的某些控件? A:用委托。一个简单可行的办法用ref.下面是个小例子: 在Form1的button1_Click里写: private void button1_Click(object sender, EventArgs e) { this.button1.Enabled = false; Form2 f2 = new Form2(ref button1); f2.Show(); } Form2里这样写: public Button button; public Form2(ref Button button) { this.button = button; InitializeComponent(); } private void button1_Click(object sender, EventArgs e) { this.button.Enabled = true; }
2019-12-21 19:43:50 716B C# 控件调用
1