c#中的+=是什么意思?

this.Load += new System.EventHandler(this.Form3_Load);

第1个回答  2008-12-25
就是在this加载的时候执行Form3_Load这个方法
简单的说就是给对象的事件加上回调函数
第2个回答  2008-12-25
this.Load =this.Load+ new System.EventHandler(this.Form3_Load);本回答被提问者采纳
相似回答
大家正在搜