I want to set the selected date of the Calendar, like with the DateTimePicker.
The SelectedDate property, which allegedly has a getter and setter, does not seem to work.
radDateTimePicker1.Value = DateTime.Now.AddDays(-3); // This works great. The picker displays the date from three days ago.
radCalendar1.SelectedDate = DateTime.Now.AddDays(-3); // This shows today's date.
What am I missing?
TIA!