Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

DateNavigatorCellAppearance.InactiveState Property

Gets or sets appearance properties that are applied to the cell when the cell is inactive. This is a dependency property.

Namespace: DevExpress.Xpf.Editors.DateNavigator

Assembly: DevExpress.Xpf.Core.v24.2.dll

NuGet Package: DevExpress.Wpf.Core

#Declaration

public DateNavigatorStateAppearance InactiveState { get; set; }

#Property Value

Type Description
DateNavigatorStateAppearance

A DateNavigatorStateAppearance value that is appearance properties applied to the cell.

#Remarks

The following code sample sets inactive cells’ Opacity to 0.5 and Background to PapayaWhip:

<Window ...
  xmlns:dxe="http://schemas.devexpress.com/winfx/2008/xaml/editors">
  <dxe:DateNavigator>
    <dxe:DateNavigator.Appearance>
      <dxe:DateNavigatorCellAppearance>
        <dxe:DateNavigatorCellAppearance.InactiveState>
          <dxe:DateNavigatorStateAppearance Opacity="0.5" Background="PapayaWhip"/>
        </dxe:DateNavigatorCellAppearance.InactiveState>
      </dxe:DateNavigatorCellAppearance>
    </dxe:DateNavigator.Appearance>
  </dxe:DateNavigator>
</Window>

DateNavigator Appearance - MouseOverCell

See Also