It's not who you are underneath, it's what you do that defines you

摘要: 父窗框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... 阅读全文
posted @ 2012-07-16 14:51 金铭杰 阅读(591) 评论(0) 推荐(0) 编辑

Brick walls are there for a reason :they let us prove how badly we want things