All-Day Panel

The schedule All Day panel visibility can be customized by ShowAllDay and its default value is true.

<Schedule:SfSchedule x:Name="schedule" ShowAllDay="False"/>
SfSchedule schedule = new SfSchedule();

schedule.ShowAllDay = false;

this.grid.Children.Add(schedule);

Date Navigation:

In schedule the date navigation can be done using the MoveToDate method of the schedule.

  • c#
  • SfSchedule schedule = new SfSchedule();
    
    schedule.MoveToDate(new DateTime(2014,1,1 ));