Skip to main content
A newer version of this page is available. .

ContextItemCollectionOptions.CenterPanelColor Property

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

Namespace: DevExpress.Utils

Assembly: DevExpress.Utils.v20.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:

Show 49 property paths
Object Type Path to CenterPanelColor
AccordionControl
.ContextButtonsOptions .CenterPanelColor
TileBar
.ContextButtonOptions .CenterPanelColor
BaseCheckedListBoxControl
.ContextButtonOptions .CenterPanelColor
BaseDateControl
.ContextButtonOptions .CenterPanelColor
BaseImageListBoxControl
.ContextButtonOptions .CenterPanelColor
BaseListBoxControl
.ContextButtonOptions .CenterPanelColor
CameraControl
.ContextButtonOptions .CenterPanelColor
CheckedListBoxControl
.ContextButtonOptions .CenterPanelColor
CalendarControl
.ContextButtonOptions .CenterPanelColor
CalendarControlBase
.ContextButtonOptions .CenterPanelColor
ImageSlider
.ContextButtonOptions .CenterPanelColor
DateControl
.ContextButtonOptions .CenterPanelColor
ImageListBoxControl
.ContextButtonOptions .CenterPanelColor
ListBoxControl
.ContextButtonOptions .CenterPanelColor
RepositoryItemBaseSpinEdit
.ContextButtonOptions .CenterPanelColor
RepositoryItemBlobBaseEdit
.ContextButtonOptions .CenterPanelColor
RepositoryItemBreadCrumbEdit
.ContextButtonOptions .CenterPanelColor
RepositoryItemCalcEdit
.ContextButtonOptions .CenterPanelColor
RepositoryItemCheckedComboBoxEdit
.ContextButtonOptions .CenterPanelColor
RepositoryItemColorEdit
.ContextButtonOptions .CenterPanelColor
RepositoryItemColorPickEdit
.ContextButtonOptions .CenterPanelColor
RepositoryItemComboBox
.ContextButtonOptions .CenterPanelColor
RepositoryItemDateEdit
.ContextButtonOptions .CenterPanelColor
RepositoryItemDateTimeOffsetEdit
.ContextButtonOptions .CenterPanelColor
RepositoryItemFontEdit
.ContextButtonOptions .CenterPanelColor
RepositoryItemGridLookUpEdit
.ContextButtonOptions .CenterPanelColor
RepositoryItemGridLookUpEditBase
.ContextButtonOptions .CenterPanelColor
RepositoryItemImageComboBox
.ContextButtonOptions .CenterPanelColor
RepositoryItemImageEdit
.ContextButtonOptions .CenterPanelColor
RepositoryItemLookUpEdit
.ContextButtonOptions .CenterPanelColor
RepositoryItemLookUpEditBase
.ContextButtonOptions .CenterPanelColor
RepositoryItemMemoExEdit
.ContextButtonOptions .CenterPanelColor
RepositoryItemMRUEdit
.ContextButtonOptions .CenterPanelColor
RepositoryItemPictureEdit
.ContextButtonOptions .CenterPanelColor
RepositoryItemPopupBase
.ContextButtonOptions .CenterPanelColor
RepositoryItemPopupBaseAutoSearchEdit
.ContextButtonOptions .CenterPanelColor
RepositoryItemPopupContainerEdit
.ContextButtonOptions .CenterPanelColor
RepositoryItemPopupGalleryEdit
.ContextButtonOptions .CenterPanelColor
RepositoryItemSearchControl
.ContextButtonOptions .CenterPanelColor
RepositoryItemSearchLookUpEdit
.ContextButtonOptions .CenterPanelColor
RepositoryItemSpinEdit
.ContextButtonOptions .CenterPanelColor
RepositoryItemTimeEdit
.ContextButtonOptions .CenterPanelColor
RepositoryItemTimeSpanEdit
.ContextButtonOptions .CenterPanelColor
RepositoryItemTreeListLookUpEdit
.ContextButtonOptions .CenterPanelColor
SvgImageBox
.ContextButtonOptions .CenterPanelColor
TileControl
.ContextButtonOptions .CenterPanelColor
TileViewOptionsKanban
.GroupHeaderContextButtonOptions .CenterPanelColor
DateNavigator
.ContextButtonOptions .CenterPanelColor
ResourcesCheckedListBoxControl
.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