コード例 #1
0
ファイル: ScrollBar.cs プロジェクト: gered/gwen-dotnet
 /// <summary>
 /// Handler for the BarMoved event.
 /// </summary>
 /// <param name="control">The control.</param>
 protected virtual void OnBarMoved(Base control)
 {
     if (BarMoved != null)
     {
         BarMoved.Invoke(this);
     }
 }
コード例 #2
0
ファイル: ScrollBar.cs プロジェクト: EReeves/gwen-net-ex
 /// <summary>
 /// Handler for the BarMoved event.
 /// </summary>
 /// <param name="control">The control.</param>
 protected virtual void OnBarMoved(ControlBase control, EventArgs args)
 {
     if (BarMoved != null)
     {
         BarMoved.Invoke(this, EventArgs.Empty);
     }
 }