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

AlertControl.ButtonDownChanged Event

Fires when the pressed state of a custom check button within an alert window has been changed.

Namespace: DevExpress.XtraBars.Alerter

Assembly: DevExpress.XtraBars.v24.2.dll

NuGet Package: DevExpress.Win.Navigation

#Declaration

[DXCategory("Events")]
public event AlertButtonDownChangedEventHandler ButtonDownChanged

#Event Data

The ButtonDownChanged event's data class is DevExpress.XtraBars.Alerter.AlertButtonDownChangedEventArgs.

#Remarks

The ButtonDownChanged event fires after a custom check button has been clicked and its pressed state has been changed. To get the current pressed state of the button, use the event’s Down parameter. To respond to clicking regular custom buttons, handle the AlertControl.ButtonClick event.

Please refer to the AlertControl.ButtonClick topic, to learn more about using the ButtonDownChanged and AlertControl.ButtonClick events.

See Also