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