Skip to main content
All docs
V25.1
  • 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

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

    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
    .ContextButtonOptions .NearPanelColor
    CalendarControlBase
    .ContextButtonOptions .NearPanelColor
    ImageSlider
    .ContextButtonOptions .NearPanelColor
    RepositoryItemPictureEdit
    .ContextButtonOptions .NearPanelColor
    SvgImageBox
    .ContextButtonOptions .NearPanelColor
    TileControl
    .ContextButtonOptions .NearPanelColor
    TileView
    .ContextButtonOptions .NearPanelColor

    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.

    NearPanelColor

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

    PropertiesNearPanelColor

    See Also