Skip to main content
Bar

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

RadialContextMenu.AutoExpand Property

Gets or sets whether the current RadialContextMenu is automatically expanded when opened.

Namespace: DevExpress.Xpf.Bars

Assembly: DevExpress.Xpf.Core.v24.2.dll

NuGet Package: DevExpress.Wpf.Core

#Declaration

public bool? AutoExpand { get; set; }

#Property Value

Type Description
Nullable<Boolean>

A Nullable<T><Boolean,> value that specifies whether the current RadialContextMenu is automatically expanded when opened.

#Remarks

An end-user can invoke the RadialContextMenu with the right mouse click or using the keyboard. In code, the RadialContextMenu can be opened using the BarPopupBase.ShowPopup method. By default, the menu is collapsed when opened through the code. When collapsed, the menu is rendered as a round button and its items are hidden. An end-user can click this button to expand the menu. If the menu is invoked by an end-user using the mouse or keyboard, it is automatically expanded, by default. Use the AutoExpand property to specify whether the current RadialContextMenu is automatically expanded when invoked.

See Also