Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

ContextItemCollectionOptions.TopPanelColor Property

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

Namespace: DevExpress.Utils

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

Object Type Path to TopPanelColor
CameraControl
.ContextButtonOptions .TopPanelColor
CalendarControlBase
.ContextButtonOptions .TopPanelColor
ImageSlider
.ContextButtonOptions .TopPanelColor
RepositoryItemPictureEdit
.ContextButtonOptions .TopPanelColor
SvgImageBox
.ContextButtonOptions .TopPanelColor
TileControl
.ContextButtonOptions .TopPanelColor
TileView
.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