赞
踩
有时子窗体的操作需要实时调用父窗体中的控件操作,比如在父窗体的文本框中显示子窗体中的输出:
主窗体:
- MainForm.cs:
-
- public partial class MainForm : Form
- {
- public MainForm()
- {
- InitializeComponent();
- }
-
- private void button1_Click(object sender, EventArgs e)
- {
- SubForm SubForm = new SubForm();
-
- // 3.将ChangeTextVal加入到委托事件中
- // 等效于:
- // SubForm.ChangeTextVal += ChangeTextVal;
- SubForm.ChangeTextVal += new DelegateChangeTextVal(ChangeTextVal);
- SubForm.ShowDialog();
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。