Skip to main content
A newer version of this page is available. .

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.v18.2.dll

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