Skip to main content
All docs
V25.1
  • DateNavigatorStateAppearance.CornerRadius Property

    Gets or sets the cell’s corner radius. This is a dependency property.

    Namespace: DevExpress.Xpf.Editors.DateNavigator

    Assembly: DevExpress.Xpf.Core.v25.1.dll

    NuGet Package: DevExpress.Wpf.Core

    Declaration

    public CornerRadius? CornerRadius { get; set; }

    Property Value

    Type Description
    Nullable<CornerRadius>

    A Nullable CornerRadius value that specifies the cell’s corner radius.

    Remarks

    The following code sample sets cellsBackground to Red and CornerRadius to 5 and changes the cell’s Background to Green when the mouse pointer is over the cell:

    <Window ...
      xmlns:dxe="http://schemas.devexpress.com/winfx/2008/xaml/editors">
      <dxe:DateNavigator>
        <dxe:DateNavigator.Appearance>
          <dxe:DateNavigatorCellAppearance>
            <dxe:DateNavigatorCellAppearance.NormalState>
              <dxe:DateNavigatorStateAppearance Background="Red" CornerRadius="5"/>
            </dxe:DateNavigatorCellAppearance.NormalState>
            <dxe:DateNavigatorCellAppearance.MouseOverState>
              <dxe:DateNavigatorStateAppearance Background="Green"/>
            </dxe:DateNavigatorCellAppearance.MouseOverState>
          </dxe:DateNavigatorCellAppearance>
        </dxe:DateNavigator.Appearance>
      </dxe:DateNavigator>
    </Window>
    

    DateNavigator Appearance - MouseOverCell

    See Also