# Set the Days for Working Week View

## Content



You can specify the days of the week to appear in **Working Week View** by setting the WorkDays through the **C1Scheduler.CalendarHelper** property.

![](https://cdn.mescius.io/document-site-files/images/4c5f07fe-a0aa-4d09-95ef-6685908019cd/images/workweekdays.png)

To set the days for **Working Week View**, follow these steps:

1.  Add the C1Scheduler control to the XAML designer and set its name using the **Name** property, say **scheduler**.
2.  Set the Scheduler's **ViewType** property to **WorkingWeek**.
3.  Add a CalendarHelper in the Scheduler by setting the C1Scheduler.CalendarHelper property.
4.  Set the **WorkDays, WeekStart, StartDayTime, and EndDayTime** properties for the CalendarHelper to set the working week days. After adding these properties the XAML code looks similar to the following.
    
    ```xml
    <c1:C1Scheduler x:Name="scheduler" ViewType="WorkingWeek">
        <c1:C1Scheduler.CalendarHelper>
            <!--Setting working days for week view using CalendarHelper's WorkDays property-->
            <c1:CalendarHelper WeekStart="Sunday"
                EndDayTime="18:20:00" StartDayTime="09:20:00"
                WorkDays="Tuesday,Wednesday,Thursday,Friday,Saturday">
            </c1:CalendarHelper>
        </c1:C1Scheduler.CalendarHelper>
    </c1:C1Scheduler>
    ```