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

AppMenuFileLabel.CheckedChanged Event

Fires after the AppMenuFileLabel.Checked property has been changed.

Namespace: DevExpress.XtraBars.Ribbon

Assembly: DevExpress.XtraBars.v24.2.dll

NuGet Package: DevExpress.Win.Navigation

#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