Skip to main content

MouseHandlerServiceWrapper.OnMouseUp(PortableMouseEventArgs) Method

Override this method to handle the MouseUp event.

Namespace: DevExpress.Services

Assembly: DevExpress.Data.v23.2.dll

NuGet Package: DevExpress.Data

Declaration

public virtual void OnMouseUp(
    PortableMouseEventArgs e
)

Parameters

Name Type Description
e DevExpress.Portable.Input.PortableMouseEventArgs

This class is equivalent to System.Windows.Forms.MouseEventArgs and contains information on a pressed mouse button, the number of times the mouse button was pressed and released, the mouse coordinates, and the amount the mouse wheel moved.

Remarks

The MouseUp event occurs when a user releases the mouse button while the mouse pointer is over a control. Use the OnMouseUp method to handle this event.

See Also