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

AppMenuFileLabel.CheckedChanged Event

Fires after the AppMenuFileLabel.Checked property has been changed.

Namespace: DevExpress.XtraBars.Ribbon

Assembly: DevExpress.XtraBars.v19.1.dll

Declaration

[DXCategory("Events")]
public event EventHandler CheckedChanged

Event Data

The CheckedChanged event's data class is EventArgs.

Remarks

The CheckedChanged event fires after the AppMenuFileLabel.Checked property’s value has been changed. For instance, this happens when an end-user clicks a check button displayed at the label’s right edge (see AppMenuFileLabel.ShowCheckButton). You can prevent the check state from being changed on clicking this button by handling the AppMenuFileLabel.LabelImageClick event and setting the event’s Cancel parameter to true.

See Also