/// <summary> /// Raises the <see cref="Scroll"/> event /// </summary> /// <param name="e">Scroll event arguments</param> protected virtual void OnScroll(ScrollEventArgs e) { Properties.TriggerEvent(ScrollEvent, this, e); }
public virtual void OnScroll(ScrollEventArgs e) { if (scroll != null) scroll (this, e); }
/// <summary> /// Raises the scroll event. /// </summary> public void OnScroll(Scrollable widget, ScrollEventArgs e) { widget.Platform.Invoke(() => widget.OnScroll(e)); }
public virtual void OnScroll(ScrollEventArgs e) { Properties.TriggerEvent(ScrollEvent, this, e); }