摘要:
父窗框mainForm;子窗体childForm,利用事件进行传值在子窗体中的操作:public event EventHandler accept;public string value;private void btnStart_Click(object sender, EventArgs e){ value=txtName.text; if(accept!=null) { accept(this, EventArgs.Empty);//当事件触发时,传递自身引用 } }在父窗体中的操作:childForm frmChild=new childForm();private... 阅读全文