Using DateOnly in the .NET MAUI DatePicker
If your application needs to store or manipulate only the dates without times, you can take advantage of the DateOnly
struct when working with the DatePicker control.
You can set a DateOnly
value to the MinimumDate
, MaximumDate
, Date
, and DefaultHighlightedDate
properties by using the Telerik DateOnlyToDateTimeConverter
converter. The converter converts System.DateOnly
to System.DateTime
and System.DateTime
to System.DateOnly
.
Here is the converter definition in XAML:
The following example demonstrates how to set DateOnly
in the DatePicker using a converter.
1. Define the control and the properties:
2. Define the converter in the Page's resource:
3. Add the telerik
namespace:
4. Add the ViewModel
:
For the DatePicker DateOnly example, go to the SDKBrowser Demo Application and navigate to the DatePicker > DateOnly category.