Skip to main content

TileNavPaneDropDownOptions.BackColor Property

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

Namespace: DevExpress.XtraBars.Navigation

Assembly: DevExpress.XtraBars.v23.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