System.Windows.Forms.ViewHelper.MouseUp C# (CSharp) Method

MouseUp() public method

public MouseUp ( NSEvent theEvent ) : void
theEvent NSEvent
return void
		public override void MouseUp (NSEvent theEvent)
		{
			PointF point = this.ConvertPointFromView (theEvent.LocationInWindow, null);
			
			var button = (MouseButtons)theEvent.ButtonNumber;
			this.Host.FireMouseUp (Host, new MouseEventArgs (button, theEvent.ClickCount, (int)point.X, (int)point.Y, 0));
			base.MouseUp (theEvent);
		}
		public override void MouseDown (NSEvent theEvent)