protected virtual void OnScroll(ScrollPanelEventArgs args)
 {
     if (Scroll != null)
     {
         Scroll(this, args);
     }
 }
示例#2
0
 protected virtual void OnScroll(ScrollPanelEventArgs args)
 {
     if (this.Scroll == null)
     {
         return;
     }
     this.Scroll((object)this, args);
 }