Skip to main content

ContextItemCollectionOptions.BottomPanelColor Property

Gets or sets a Color for a control’s bottom panel that contains context items.

Namespace: DevExpress.Utils

Assembly: DevExpress.Utils.v23.2.dll

NuGet Packages: DevExpress.Utils, DevExpress.Wpf.Core

Declaration

[XtraSerializableProperty]
public Color BottomPanelColor { get; set; }

Property Value

Type Description
Color

A bottom panel’s color.

Property Paths

You can access this nested property as listed below:

Object Type Path to BottomPanelColor
CameraControl
.ContextButtonOptions .BottomPanelColor
CalendarControlBase
.ContextButtonOptions .BottomPanelColor
ImageSlider
.ContextButtonOptions .BottomPanelColor
RepositoryItemPictureEdit
.ContextButtonOptions .BottomPanelColor
SvgImageBox
.ContextButtonOptions .BottomPanelColor
TileControl
.ContextButtonOptions .BottomPanelColor
TileView
.ContextButtonOptions .BottomPanelColor

Remarks

The code below demonstrates how to change BottomPanelColor.

using DevExpress.Utils;
using System.Drawing;
// ...
pictureEdit1.Properties.ContextButtonOptions.BottomPanelColor = Color.Black;

The image below demonstrates the result.

BottomPanelColor

Alternatively, you can access BottomPanelColor in a control’s Properties window.

PropertiesBottomPanelColor

See Also