Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TdxAlertWindowManager.OnMouseUp Event

In This Article

Enables you to perform custom actions when an end-user releases a mouse button and the mouse pointer is located over an alert window‘s area.

#Declaration

Delphi
property OnMouseUp: TdxAlertWindowManagerMouseEvent read; write;

#Remarks

Sender specifies the alert window manager.

AAlertWindow specifies the alert window located under the mouse pointer.

AButton identifies the mouse button being released.

AShift determines the state of the Alt, Ctrl, and Shift keys and the state of the mouse buttons.

X and Y specify the coordinates of the mouse pointer within the alert window (relative to the window’s top-left corner).

To perform specific actions when an end-user presses a mouse button, handle the OnMouseDown event. You can handle the OnMouseUp and OnMouseDown events in combination with other mouse tracking events (OnMouseEnter, OnMouseLeave, OnMouseMove, OnDragBegin, OnDragMove, and OnDragEnd).

See Also