Unplanned
Last Updated: 22 Jul 2021 07:34 by ADMIN
Currently, RadDateTimePicker offers a Value property, typeof(DateTime) even though the control is designed to manage only date and only time values.

With releasing .NET 6, there are TimeOnly and DateOnly types which would be more appropriate for managing such values:

https://devblogs.microsoft.com/dotnet/date-time-and-time-zone-enhancements-in-net-6/   
Unplanned
Last Updated: 21 Jul 2021 08:17 by ADMIN
Created by: Ketan
Comments: 0
Category: TimePicker
Type: Feature Request
0

Currently, RadTimePicker offers a Value property, typeof(DateTime?) even though the control is designed to manage time values.

With releasing .NET 6, there is TimeOnly type which would be more appropriate for managing time values:

https://devblogs.microsoft.com/dotnet/date-time-and-time-zone-enhancements-in-net-6/ 

Unplanned
Last Updated: 15 Mar 2021 16:01 by ADMIN
Created by: Erich
Comments: 0
Category: TimePicker
Type: Feature Request
0

For example:

//from 22:00 till 07:00 the next day.
this.radTimePicker1.MinValue = DateTime.Today.Date.AddHours(22);
this.radTimePicker1.MaxValue = DateTime.Today.Date.AddDays(1).AddHours(7);