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

MouseUp() public method

public MouseUp ( NSEvent theEvent ) : void
theEvent NSEvent
return void
		public override void MouseUp (NSEvent theEvent)
		{
			if(theEvent == null)
				return;
			//base.MouseUp (theEvent);
			m_parent.HandleClick(theEvent.ClickCount,new MouseEventArgs(MouseButtons.Left,theEvent.ClickCount,theEvent.AbsoluteX,theEvent.AbsoluteY,theEvent.AbsoluteZ));
		}	
		public Rectangle GetClientRectangle()