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.InnerRadius Property

Gets or sets the starting radius of the inner circle segment that is filled with the color specified by an item’s BackColor (BarItem.ItemInMenuAppearance.Normal.BackColor) property.

Namespace: DevExpress.XtraBars.Ribbon

Assembly: DevExpress.XtraBars.v24.2.dll

NuGet Package: DevExpress.Win.Navigation

#Declaration

[DefaultValue(50)]
[DXCategory("Layout")]
public int InnerRadius { get; set; }

#Property Value

Type Default Description
Int32 50

An Int32 value that is the distance between the RadialMenu‘s center and its sectors’ color fill.

#Remarks

You can specify appearance settings used to paint BarItemLinks in pop-ups via the BarItem.ItemInMenuAppearance property. If you set a specific Backcolor for an item, its corresponding sector within a RadialMenu will be filled with this color. The InnerRadius property specifies an offset for this fill counted from the RadialMenu‘s center. The figure below illustrates an example.

RadialMenu InnerRadius

The default color used to paint an item’s outer border is specified by the RadialMenu.BorderColor and RadialMenu.MenuColor properties. You can provide custom border colors for individual items via their BarItem.ItemInMenuAppearance.Normal.BorderColor properties.

See Also