Back to Devexpress

ContextItemCollectionOptions.TopPanelColor Property

windowsforms-devexpress-dot-utils-dot-contextitemcollectionoptions-abe98da7.md

latest3.6 KB
Original Source

ContextItemCollectionOptions.TopPanelColor Property

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

Namespace : DevExpress.Utils

Assembly : DevExpress.Utils.v25.2.dll

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

Declaration

csharp
[XtraSerializableProperty]
public Color TopPanelColor { get; set; }
vb
<XtraSerializableProperty>
Public Property TopPanelColor As Color

Property Value

TypeDescription
Color

A top panel’s color.

|

Property Paths

You can access this nested property as listed below:

Object TypePath 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.

csharp
using DevExpress.Utils;
using System.Drawing;
// ...
pictureEdit1.Properties.ContextButtonOptions.TopPanelColor = Color.Black;
vb
Imports DevExpress.Utils
Imports System.Drawing
' ...
pictureEdit1.Properties.ContextButtonOptions.TopPanelColor = Color.Black

The image below demonstrates the result.

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

See Also

ContextItemCollectionOptions Class

ContextItemCollectionOptions Members

DevExpress.Utils Namespace