ContextItemCollectionOptions.FarPanelColor Property
Gets or sets a Color for a control’s far panel that contains context items.
Namespace: DevExpress.Utils
Assembly: DevExpress.Utils.v24.1.dll
NuGet Packages: DevExpress.Utils, DevExpress.Wpf.Core
Declaration
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 |
|
CalendarControlBase |
|
ImageSlider |
|
RepositoryItemPictureEdit |
|
SvgImageBox |
|
TileControl |
|
TileView |
|
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.
Alternatively, you can access FarPanelColor in a control’s Properties window.
See Also