new EventHandler(this.Binding_PositionChanged)是什么意思,有何作用
this.BindingContext[dsPubs1, "authors "].PositionChanged += new EventHandler(this.Binding_PositionChanged);
是什么意思,有何作用
有相关的资料吗?
具体在
http://msdn.microsoft.com/library/chs/default.asp?url=/library/CHS/vbcon/html/vbcondatanavigationinwindowsforms.asp
中的一篇文章的最后
------解决方案--------------------应是对PositionChanged 事件添加了处理的方法,这个处理方法就是Binding_PositionChanged这个方法体.
------解决方案--------------------意思是:
当PositionChanged事件发生后(也就是绑定位置变化后),Binding_PositionChanged这个函数将响应它,也就是这个函数会马上执行!
------解决方案--------------------+=就是向一个事件注册处理的这个事件的代码.
------解决方案--------------------事件委托
delegate