/// <summary> /// Raises the scroll event. /// </summary> public void OnScroll(Scrollable widget, ScrollEventArgs e) { using (widget.Platform.Context) widget.OnScroll(e); }
/// <summary> /// Raises the scroll event. /// </summary> public void OnScroll(Scrollable widget, ScrollEventArgs e) { widget.Platform.Invoke(() => widget.OnScroll(e)); }