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

RadialContextMenu.AutoExpand Property

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

Namespace: DevExpress.Xpf.Bars

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

NuGet Packages: DevExpress.WindowsDesktop.Wpf.Core, 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