DateNavigator.MaxValue Property
Gets or sets a maximum date that end-users can select. This is a dependency property.
Namespace: DevExpress.Xpf.Editors.DateNavigator
Assembly: DevExpress.Xpf.Core.v24.1.dll
NuGet Package: DevExpress.Wpf.Core
Declaration
Property Value
Type | Description |
---|---|
Nullable<DateTime> | A maximum 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>
See Also