RadTimePicker: provide opportunity to set MaxValue to next day
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);