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

ContextItemCollectionOptions.TopPanelColor Property

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

Namespace: DevExpress.Utils

Assembly: DevExpress.Utils.v20.1.dll

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

Declaration

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

Property Value

Type Description
Color

A top panel’s color.

Property Paths

You can access this nested property as listed below:

Show 49 property paths
Object Type Path to TopPanelColor
ContextItemCollection
.Options .TopPanelColor
AccordionContextItemCollection
.Options .TopPanelColor
AccordionControl
.ContextButtonsOptions .TopPanelColor
TileBar
.ContextButtonOptions .TopPanelColor
BaseCheckedListBoxControl
.ContextButtonOptions .TopPanelColor
BaseDateControl
.ContextButtonOptions .TopPanelColor
BaseImageListBoxControl
.ContextButtonOptions .TopPanelColor
BaseListBoxControl
.ContextButtonOptions .TopPanelColor
CameraControl
.ContextButtonOptions .TopPanelColor
CheckedListBoxControl
.ContextButtonOptions .TopPanelColor
CalendarControl
.ContextButtonOptions .TopPanelColor
CalendarControlBase
.ContextButtonOptions .TopPanelColor
ImageSlider
.ContextButtonOptions .TopPanelColor
DateControl
.ContextButtonOptions .TopPanelColor
ImageListBoxControl
.ContextButtonOptions .TopPanelColor
ListBoxControl
.ContextButtonOptions .TopPanelColor
RepositoryItemBaseSpinEdit
.ContextButtonOptions .TopPanelColor
RepositoryItemBlobBaseEdit
.ContextButtonOptions .TopPanelColor
RepositoryItemBreadCrumbEdit
.ContextButtonOptions .TopPanelColor
RepositoryItemCalcEdit
.ContextButtonOptions .TopPanelColor
RepositoryItemCheckedComboBoxEdit
.ContextButtonOptions .TopPanelColor
RepositoryItemColorEdit
.ContextButtonOptions .TopPanelColor
RepositoryItemColorPickEdit
.ContextButtonOptions .TopPanelColor
RepositoryItemComboBox
.ContextButtonOptions .TopPanelColor
RepositoryItemDateEdit
.ContextButtonOptions .TopPanelColor
RepositoryItemFontEdit
.ContextButtonOptions .TopPanelColor
RepositoryItemGridLookUpEdit
.ContextButtonOptions .TopPanelColor
RepositoryItemGridLookUpEditBase
.ContextButtonOptions .TopPanelColor
RepositoryItemImageComboBox
.ContextButtonOptions .TopPanelColor
RepositoryItemImageEdit
.ContextButtonOptions .TopPanelColor
RepositoryItemLookUpEdit
.ContextButtonOptions .TopPanelColor
RepositoryItemLookUpEditBase
.ContextButtonOptions .TopPanelColor
RepositoryItemMemoExEdit
.ContextButtonOptions .TopPanelColor
RepositoryItemMRUEdit
.ContextButtonOptions .TopPanelColor
RepositoryItemPictureEdit
.ContextButtonOptions .TopPanelColor
RepositoryItemPopupBase
.ContextButtonOptions .TopPanelColor
RepositoryItemPopupBaseAutoSearchEdit
.ContextButtonOptions .TopPanelColor
RepositoryItemPopupContainerEdit
.ContextButtonOptions .TopPanelColor
RepositoryItemPopupGalleryEdit
.ContextButtonOptions .TopPanelColor
RepositoryItemSearchControl
.ContextButtonOptions .TopPanelColor
RepositoryItemSearchLookUpEdit
.ContextButtonOptions .TopPanelColor
RepositoryItemSpinEdit
.ContextButtonOptions .TopPanelColor
RepositoryItemTimeEdit
.ContextButtonOptions .TopPanelColor
RepositoryItemTimeSpanEdit
.ContextButtonOptions .TopPanelColor
RepositoryItemTreeListLookUpEdit
.ContextButtonOptions .TopPanelColor
TileControl
.ContextButtonOptions .TopPanelColor
TileViewOptionsKanban
DateNavigator
.ContextButtonOptions .TopPanelColor
ResourcesCheckedListBoxControl
.ContextButtonOptions .TopPanelColor

Remarks

The code below demonstrates how to change TopPanelColor.

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

The image below demonstrates the result.

ContextItemCollection

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

ContextItemCollectionOptions

See Also