Skip to main content

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

RadialMenu.PaintStyle Property

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

Namespace: DevExpress.XtraBars.Ribbon

Assembly: DevExpress.XtraBars.v24.2.dll

NuGet Package: DevExpress.Win.Navigation

#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 dock controller. 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