windowsforms-devexpress-dot-xtraeditors-dot-windowsformssettings-9c6940f6.md
Gets or sets whether the DevExpess controls’ built-in context menus are displayed in the classic rectangular or radial style. This is a static property.
Namespace : DevExpress.XtraEditors
Assembly : DevExpress.Utils.v25.2.dll
NuGet Packages : DevExpress.Utils, DevExpress.Wpf.Core
public static PopupMenuStyle PopupMenuStyle { get; set; }
Public Shared Property PopupMenuStyle As PopupMenuStyle
| Type | Description |
|---|---|
| DevExpress.XtraEditors.Controls.PopupMenuStyle |
A PopupMenuStyle enumeration value that specifies the style in which built-in context menus are displayed.
|
The static PopupMenuStyle property allows you to specify the default style in which the DevExpess controls’ built-in context menus are displayed. The PopupMenuStyle enumeration provides the following values:
|
Value
|
Description
| | --- | --- | |
Default and Classic
|
Popup menus are displayed in the traditional rectangular style. The following image shows the RichEditControl‘s context menu displayed in the Classic style.
| |
Radial
|
Popup menus are displayed as radial menus (see RadialMenu). The following image shows the same context menu displayed in the Radial style.
|
Items in radial menus are regrouped and disabled items are automatically hidden to decrease the number of items in menus that are too large. You can also manage item display in radial menus with the DXMenuItem.Priority setting.
See Also