Skip to main content

ContextItemCollectionOptions.FarPanelColor Property

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

Namespace: DevExpress.Utils

Assembly: DevExpress.Utils.v23.2.dll

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

Declaration

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

Property Value

Type Description
Color

A far panel’s color.

Property Paths

You can access this nested property as listed below:

Object Type Path to FarPanelColor
CameraControl
.ContextButtonOptions .FarPanelColor
CalendarControlBase
.ContextButtonOptions .FarPanelColor
ImageSlider
.ContextButtonOptions .FarPanelColor
RepositoryItemPictureEdit
.ContextButtonOptions .FarPanelColor
SvgImageBox
.ContextButtonOptions .FarPanelColor
TileControl
.ContextButtonOptions .FarPanelColor
TileView
.ContextButtonOptions .FarPanelColor

Remarks

The code below demonstrates how to change FarPanelColor.

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

The image below demonstrates the result.

FarPanelColor

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

PropertiesFarPanelColor

See Also