我在后台代码里指定了绑定,但调试的过程都没有执行this.SectionReport1_ReportStart,this.SectionReport1_DataInitialize,this.SectionReport1_FetchData这几个事件,这是为什么呢,但在本贴中加上绑定事件就可以正常执行
this.ReportStart += new System.EventHandler(this.SectionReport1_ReportStart);
this.DataInitialize += new System.EventHandler(this.SectionReport1_DataInitialize);
this.FetchData += new FetchEventHandler(this.SectionReport1_FetchData);
this.ReportStart += new System.EventHandler(this.SectionReport1_ReportStart);
this.DataInitialize += new System.EventHandler(this.SectionReport1_DataInitialize);
this.FetchData += new FetchEventHandler(this.SectionReport1_FetchData);