ComponentOne Scheduler for WinForms
Data Views
Working with Scheduler for WinForms > Views > Data Views

The C1Schedule control supports different calendar views. There are five predefined data views:

View Image Description
DayView Displays a detailed view showing appointments for a particular day.
TimeLineView Displays appointments in a horizontal time line.
MonthView Displays appointments for one or more months.
WeekView

The following image displays the Office 2007 style week view. This is the default for the Office 2007 Visual Styles, which have the WeekViewStyle property is set to Office2007 and the ViewType property set to WeekView:

Displays appointments for specified work days.
WorkWeekView Displays appointments for any given weekly period. The default is Monday through Friday.

Changing the default data view

To change the default data view at design time, set the ViewType property either in the Smart Designer, tasks menu, or in code.

In the Smart Designer
  1. On the C1Schedule Smart Designer, click the Visual Style button. For more information on accessing the C1Schedule Smart Designer, see C1Schedule Smart Designer.
  2. In the Visual Style dialog box, click the Month View button.
  3. Close the dialog box.
In the Tasks Menu
  1. Open the C1Schedule Tasks menu. For information accessing the C1Schedule Tasks menu, see C1Schedule Tasks Menu.
  2. Click the drop-down arrow in the Default View drop-down, and select MonthView.
  3. Close the C1Schedule Tasks menu.
In Code

Add the following code to the Form_Load event to set the default ViewType property to MonthView:

Me.C1Schedule1.ViewType = C1.Win.C1Schedule.ScheduleViewEnum.MonthView
this.c1Schedule1.ViewType = C1.Win.C1Schedule.ScheduleViewEnum.MonthView;