Reputation: 1951
I have a CalendarView in my UWP app and I need to change the first day of the week from Sunday to Monday. Does anyone know how to do this?
Thanks
Upvotes: 0
Views: 200
Reputation: 5920
Just change the CalendarView.FirstDayOfWeek
property.
Example:
MeCalendarView.FirstDayOfWeek = DayOfWeek.Monday;
Eventually in XAML
:
<CalendarView FirstDayOfWeek="Monday"/>
Upvotes: 2