RadialMenu.Collapsed Event
Fires after the menu is collapsed.
Namespace: DevExpress.XtraBars.Ribbon
Assembly: DevExpress.XtraBars.v24.1.dll
NuGet Package: DevExpress.Win.Navigation
Declaration
Event Data
The Collapsed event's data class is DevExpress.XtraBars.Ribbon.RadialMenuCollapsedEventArgs.
Remarks
With clicking on the central button of an expanded radial menu, the menu collapses, but not closes. Set the ForceClosing event parameter to true to forcibly close the menu.
radialMenu.Collapsed += RadialMenu_Collapsed;
//...
private void RadialMenu_Collapsed(object sender, RadialMenuCollapsedEventArgs e) {
e.ForceClosing = true;
}
See Also