其他函数中调用事件响应函数
在另一个函数中调用了button1_Click(object sender, EventArgs e)函数
经求教之后得知调用时使用如下形式button1_Click(this, new EventArgs());,可不可以请各位解释一下为什么需要这么写啊?
------解决方案--------------------
this.button1.Click += new System.EventHandler(this.button1_Click);
事件委托,
http://blog.163.com/nothing_cj/blog/static/82560196201192333011132/