May 7, 2014
Use following code to enumerate all appointments between two dates in Schedule control (applies to WinForms, WPF and Silverlight): C#: DateTime start = new DateTime(2014, 05, 07); DateTime end = start.AddDays(10); DateTime d = start; while (d <= end) { DevComponents.Schedule.Model.Day day = calendarView1.CalendarModel.GetDay(d); foreach (Appointment item in day.Appointments) { Console.WriteLine("Appointment: {0}-{1} {2}", item.StartTime, item.EndTime, […]