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

ContextItemCollectionOptions.NormalStateOpacity Property

Gets or sets ContextItem opacity.

Namespace: DevExpress.Utils

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

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