Skip to main content

ContextItemCollectionOptions.CenterPanelColor Property

Gets or sets a Color for a control’s center 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 CenterPanelColor { get; set; }

Property Value

Type Description
Color

A center panel’s color.

Property Paths

You can access this nested property as listed below:

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

Remarks

The code below demonstrates how to change CenterPanelColor.

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

The image below demonstrates the result.

CenterPanelColor

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

PropertiesCenterPanelColor

See Also