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

TileNavPaneDropDownOptions.BackColor Property

Gets or sets the back color of the drop-down tile bar.

Namespace: DevExpress.XtraBars.Navigation

Assembly: DevExpress.XtraBars.v24.2.dll

NuGet Package: DevExpress.Win.Navigation

#Declaration

public Color BackColor { get; set; }

#Property Value

Type Description
Color

The Color object specifying the back color of the drop-down tile bar.

#Property Paths

You can access this nested property as listed below:

Object Type Path to BackColor
TileNavElement
.OptionsDropDown .BackColor
TileNavPane

#Remarks

Use the BackColor property to specify a drop-down tile bar’s back color. If this property is set to Color.Empty, the drop-down is filled with the default back color, which matches the parent element’s back color:

  • If a drop-down is invoked for a TileNavElement rendered as a button, the drop-down’s default back color is specified by the TileNavElement.AppearanceSelected.BackColor property.
  • If a drop-down is invoked for a TileNavElement rendered as a tile, the drop-down’s default back color is specified by the TileNavElement.Tile.AppearanceItem.Normal.BackColor property.

The appearance settings of tiles and group names in drop-down tile bars can be customized with the TileNavPaneDropDownOptions.AppearanceItem and TileNavPaneDropDownOptions.AppearanceGroupText properties, respectively.

See Also