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

RadialMenu.PaintStyle Property

Gets or sets the style used to paint the current RadialMenu.

Namespace: DevExpress.XtraBars.Ribbon

Assembly: DevExpress.XtraBars.v19.2.dll

Declaration

[DefaultValue(PaintStyle.Skin)]
[DXCategory("Layout")]
public PaintStyle PaintStyle { get; set; }

Property Value

Type Default Description
DevExpress.XtraBars.Ribbon.PaintStyle **Skin**

A PaintStyle enumeration value specifying the style used to paint the current RadialMenu.

Remarks

The PaintStyle property allows you to specify the style used to paint the current RadialMenu. The PaintStyle enumeration provides values listed in the table below.

PaintStyle

Description

Classic

The Radial Menu is painted using the default colors. The figures below demonstrate this paint scheme.

RadialMenu_ClassicPaintScheme RadialMenu_ClassicPaintScheme_SubMenu

Skin

The Radial Menu is painted using a skin provided by the Bar and Docking Controllers (Customizing Default View and Behavior Settings). In the following figures, you can see the Radial Menu with the Visual Studio 2013 Blue skin applied.

RadialMenu_SkinPaintStyle_Menu RadialMenu_SkinPaintStyle_SubMenu

You can override color settings for individual visual elements of a RadialMenu with the RadialMenu.MenuColor, RadialMenu.BorderColor, RadialMenu.SubMenuHoverColor and RadialMenu.ButtonBorderColor properties.

See Also