Category / Section
How to set the start day of the week in NavigationCalendar in WinForms ScheduleControl?
1 min read
Set the start day in a week
In WinForms ScheduleControl to start a week with a particular day in NavigationCalendar, you can use NavigationCalendarStartDayOfWeek. This property gets or sets the DayOfWeek that is shown in the left-most column of the calendar.
C#
//to set the start day of the week
this.scheduleControl1.Appearance.NavigationCalendarStartDayOfWeek = DayOfWeek.Tuesday;
VB
'to set the start day of the week
Me.scheduleControl1.Appearance.NavigationCalendarStartDayOfWeek = DayOfWeek.Tuesday
The screenshot illustrates the change in the start day of the week in the schedule control.
Samples: