Skip to main content

ContextItemCollectionOptions.NormalStateOpacity Property

Gets or sets ContextItem opacity.

Namespace: DevExpress.Utils

Assembly: DevExpress.Utils.v23.2.dll

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

Declaration

[DefaultValue(0.75F)]
[XtraSerializableProperty]
public float NormalStateOpacity { get; set; }

Property Value

Type Default Description
Single 0.75

A value between 0 and 1 that determines opacity; 1 is for “opaque”, 0 is for “transparent”.

Property Paths

You can access this nested property as listed below:

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

Remarks

The code below demonstrates how to increase opacity for a RatingContextButton.

pictureEdit1.Properties.ContextButtonOptions.NormalStateOpacity = 0.9f;

The image below demonstrates the result.

NormalStateOpacity

Alternatively, you can set the NormalStateOpacity value in a control’s Properties window.

PropertiesNormalStateOpacity

See Also