/// <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); } }
/// <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); } }