Example #1
0
		/// <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);
		}
Example #2
0
 public virtual void OnScroll(ScrollEventArgs e)
 {
     if (scroll != null)
         scroll (this, e);
 }
Example #3
0
			/// <summary>
			/// Raises the scroll event.
			/// </summary>
			public void OnScroll(Scrollable widget, ScrollEventArgs e)
			{
				widget.Platform.Invoke(() => widget.OnScroll(e));
			}
Example #4
0
 public virtual void OnScroll(ScrollEventArgs e)
 {
     Properties.TriggerEvent(ScrollEvent, this, e);
 }