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

ContextItemCollectionOptions.BottomPanelColor Property

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

Property Value

Type Description
Color

A bottom panel’s color.

Property Paths

You can access this nested property as listed below:

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