ContextItemCollectionOptions.NearPanelColor Property
Gets or sets a Color for a control’s near panel that contains context items.
Namespace: DevExpress.Utils
Assembly: DevExpress.Utils.v25.1.dll
NuGet Packages: DevExpress.Utils, DevExpress.Wpf.Core
Declaration
Property Value
| Type | Description |
|---|---|
| Color | A near panel’s color. |
Property Paths
You can access this nested property as listed below:
| Object Type | Path to NearPanelColor |
|---|---|
| CameraControl |
|
| CalendarControlBase |
|
| ImageSlider |
|
| RepositoryItemPictureEdit |
|
| SvgImageBox |
|
| TileControl |
|
| TileView |
|
Remarks
The code below demonstrates how to change NearPanelColor.
using DevExpress.Utils;
using System.Drawing;
// ...
pictureEdit1.Properties.ContextButtonOptions.NearPanelColor = Color.Black;
The image below demonstrates the result.

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

See Also