OnMouseDown() protected method

Raises the Control.MouseDown event.
To override default behaviour of the control, set MouseEventArgs.Handled property to true.
protected OnMouseDown ( Eto.Forms.MouseEventArgs e ) : void
e Eto.Forms.MouseEventArgs Event arguments
return void
Example #1
0
			/// <summary>
			/// Raises the mouse down event.
			/// </summary>
			public void OnMouseDown(Control widget, MouseEventArgs e)
			{
				widget.Platform.Invoke(() => widget.OnMouseDown(e));
			}