Skip to main content

DateNavigator.MinValue Property

Gets or sets a minimum date that end-users can select. This is a dependency property.

Namespace: DevExpress.Xpf.Editors.DateNavigator

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

NuGet Package: DevExpress.Wpf.Core

Declaration

public DateTime? MinValue { get; set; }

Property Value

Type Description
Nullable<DateTime>

A minimum date end-users are allowed to select.

Remarks

Dates outside the MinValue and MaxValue span are disabled.

<Window ...
  xmlns:dxe="http://schemas.devexpress.com/winfx/2008/xaml/editors">
  <dxe:DateNavigator MaxValue="04/22/2020" MinValue="04/8/2020"/>
</Window>

DateNavigator - MaxValue and MinValue properties

See Also