Scheduler for WPF | ComponentOne
In This Topic
    Data Views
    In This Topic

    Scheduler provides the following predefined data views that determine the style used in the control:

    View Description

    Day

    Day View

    Day View

    Displays a detailed view showing appointments for a particular day.

    TimeLine

    TimeLine View

    TimeLine View

    Displays appointments in a horizontal time line.

    Month

    Month View

    Month View

    Displays appointments for one or more months.

    Week

    Week View

    Week View

    Displays appointments for specified work days.

    WorkWeek

    WorkWeek View

    WorkWeek View

    Displays appointments for any given weekly period. The default is Monday through Friday.

    The default data view for the Scheduler control is Month view. However, you can change the default data view by setting the ViewType property. This property determines which style should be used in the control using the ViewType enumeration.

    <c1:C1Scheduler x:Name="scheduler" ViewType="Day"></c1:C1Scheduler>
    
    scheduler.ViewType = ViewType.Day;