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

TileBarDropDownOptions.BeakColor Property

Gets or sets the color of a dropdown window’s beak.

Namespace: DevExpress.XtraBars.Navigation

Assembly: DevExpress.XtraBars.v24.2.dll

NuGet Package: DevExpress.Win.Navigation

#Declaration

public Color BeakColor { get; set; }

#Property Value

Type Description
Color

The color of a dropdown window’s beak.

#Property Paths

You can access this nested property as listed below:

Object Type Path to BeakColor
TileBar
.DropDownOptions .BeakColor
TileBarItem
.DropDownOptions .BeakColor

#Remarks

A dropdown window, when invoked, has a beak pointing to the tile used to invoke the dropdown window.

When the BeakColor property is set to its default value and the TileBarDropDownOptions.BackColorMode property is set to Default or UseTileBackColor, the beak color is specified by the dropdown window’s background color.

If the BeakColor property is set to a custom color, the beak will be painted using this color, while the dropdown window may use another color for its background. To paint the dropdown window’s background with the beak color, set the TileBarDropDownOptions.BackColorMode property to UseBeakColor.

See Also