Skip to main content
A newer version of this page is available. .

ContextItemCollectionOptions.FarPanelColor Property

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

Namespace: DevExpress.Utils

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

Show 49 property paths
Object Type Path to FarPanelColor
AccordionControl
.ContextButtonsOptions .FarPanelColor
TileBar
.ContextButtonOptions .FarPanelColor
BaseCheckedListBoxControl
.ContextButtonOptions .FarPanelColor
BaseDateControl
.ContextButtonOptions .FarPanelColor
BaseImageListBoxControl
.ContextButtonOptions .FarPanelColor
BaseListBoxControl
.ContextButtonOptions .FarPanelColor
CameraControl
.ContextButtonOptions .FarPanelColor
CheckedListBoxControl
.ContextButtonOptions .FarPanelColor
CalendarControl
.ContextButtonOptions .FarPanelColor
CalendarControlBase
.ContextButtonOptions .FarPanelColor
ImageSlider
.ContextButtonOptions .FarPanelColor
DateControl
.ContextButtonOptions .FarPanelColor
ImageListBoxControl
.ContextButtonOptions .FarPanelColor
ListBoxControl
.ContextButtonOptions .FarPanelColor
RepositoryItemBaseSpinEdit
.ContextButtonOptions .FarPanelColor
RepositoryItemBlobBaseEdit
.ContextButtonOptions .FarPanelColor
RepositoryItemBreadCrumbEdit
.ContextButtonOptions .FarPanelColor
RepositoryItemCalcEdit
.ContextButtonOptions .FarPanelColor
RepositoryItemCheckedComboBoxEdit
.ContextButtonOptions .FarPanelColor
RepositoryItemColorEdit
.ContextButtonOptions .FarPanelColor
RepositoryItemColorPickEdit
.ContextButtonOptions .FarPanelColor
RepositoryItemComboBox
.ContextButtonOptions .FarPanelColor
RepositoryItemDateEdit
.ContextButtonOptions .FarPanelColor
RepositoryItemDateTimeOffsetEdit
.ContextButtonOptions .FarPanelColor
RepositoryItemFontEdit
.ContextButtonOptions .FarPanelColor
RepositoryItemGridLookUpEdit
.ContextButtonOptions .FarPanelColor
RepositoryItemGridLookUpEditBase
.ContextButtonOptions .FarPanelColor
RepositoryItemImageComboBox
.ContextButtonOptions .FarPanelColor
RepositoryItemImageEdit
.ContextButtonOptions .FarPanelColor
RepositoryItemLookUpEdit
.ContextButtonOptions .FarPanelColor
RepositoryItemLookUpEditBase
.ContextButtonOptions .FarPanelColor
RepositoryItemMemoExEdit
.ContextButtonOptions .FarPanelColor
RepositoryItemMRUEdit
.ContextButtonOptions .FarPanelColor
RepositoryItemPictureEdit
.ContextButtonOptions .FarPanelColor
RepositoryItemPopupBase
.ContextButtonOptions .FarPanelColor
RepositoryItemPopupBaseAutoSearchEdit
.ContextButtonOptions .FarPanelColor
RepositoryItemPopupContainerEdit
.ContextButtonOptions .FarPanelColor
RepositoryItemPopupGalleryEdit
.ContextButtonOptions .FarPanelColor
RepositoryItemSearchControl
.ContextButtonOptions .FarPanelColor
RepositoryItemSearchLookUpEdit
.ContextButtonOptions .FarPanelColor
RepositoryItemSpinEdit
.ContextButtonOptions .FarPanelColor
RepositoryItemTimeEdit
.ContextButtonOptions .FarPanelColor
RepositoryItemTimeSpanEdit
.ContextButtonOptions .FarPanelColor
RepositoryItemTreeListLookUpEdit
.ContextButtonOptions .FarPanelColor
SvgImageBox
.ContextButtonOptions .FarPanelColor
TileControl
.ContextButtonOptions .FarPanelColor
TileViewOptionsKanban
DateNavigator
.ContextButtonOptions .FarPanelColor
ResourcesCheckedListBoxControl
.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