Skip to main content
A newer version of this page is available. .

Migration Guidelines

  • 6 minutes to read

This topic contains a list of guidelines for migrating your WPF Scheduler (deprecated) project to the current WPF Scheduler control.

Project References and Namespaces

  • Remove reference to the DevExpress.Xpf.Scheduler.v18.2.dll assembly.
  • Add a reference to the DevExpress.Xpf.Scheduling.v18.2.dll assembly.
  • Change xmlns:dxsch=”http://schemas.devexpress.com/winfx/2008/xaml/scheduler“ to xmlns:dxsch=”http://schemas.devexpress.com/winfx/2008/xaml/scheduling“.

Views

  • The Week view in the new Scheduler is similar to the former Full Week View; the former Week View has no equivalent in the new Scheduler.
  • All view types with default settings are available “out-of-the-box”. However, in XAML you can specify any number of views with different types and settings. All views are contained in the SchedulerControl.Views collection. The active view is specified by the SchedulerControl.ActiveViewIndex property.
  • The ViewBase.Caption property allows the end-user to determine which menu item to click when switching views:

    WPFScheduler_ContextMenuViews

  • View properties are specified as illustrated in the following table:

View Properties (new)

View Properties (old)

<dxsch:SchedulerControl>
    <dxsch:DayView x:Name="dayViewOne"
        Caption="DayView One"
        ResourcesPerPage="5"
        ShowAllDayArea="False"
        ShowWorkTimeOnly="True"
        SnapToCellsMode="Never"
        TimeScale="00:10:00" />
    <dxsch:DayView x:Name="dayViewTwo"
        Caption="DayView Two"
        ResourcesPerPage="5"
        ShowAllDayArea="False"
        ShowWorkTimeOnly="True"
        SnapToCellsMode="Never"
        TimeScale="00:10:00" />
    <dxsch:WorkWeekView x:Name="workWeekView"
        Caption="My View"
        ResourcesPerPage="5"
        ShowAllDayArea="False"
        ShowWorkTimeOnly="True"
        SnapToCellsMode="Never"
        TimeScale="00:10:00" />
    <dxsch:WeekView x:Name="weekView"
        ResourcesPerPage="5"
        ShowAllDayArea="False"
        ShowWorkTimeOnly="True"
        SnapToCellsMode="Never"
        TimeScale="00:10:00" />
    <dxsch:MonthView x:Name="monthView" WeekCount="4" />
    <dxsch:TimelineView x:Name="timelineView">
        <dxsch:TimelineView.TimeScales>
            <dxsch:TimeScaleYear x:Name="scaleYear" IsEnabled="False"/>
            <dxsch:TimeScaleQuarter x:Name="scaleQuarter" IsEnabled="False"/>
            <dxsch:TimeScaleMonth x:Name="scaleMonth" IsEnabled="False"/>
            <dxsch:TimeScaleWeek x:Name="scaleWeek" IsEnabled="True"/>
            <dxsch:TimeScaleDay x:Name="scaleDay" IsEnabled="True"/>
            <dxsch:TimeScaleWorkDay x:Name="scaleWorkDay" IsEnabled="False"/>
            <dxsch:TimeScaleHour x:Name="scaleHour" IsEnabled="False"/>
            <dxsch:TimeScaleWorkHour x:Name="scaleWorkHour" IsEnabled="False"/>
            <dxsch:FixedTimeScale x:Name="scale15minutes" Scale="0:15:0" IsEnabled="False"/>
        </dxsch:TimelineView.TimeScales>
    </dxsch:TimelineView>
</dxsch:SchedulerControl>
<dxsch:SchedulerControl.DayView>
    <dxsch:DayView ResourcesPerPage="5"
        ShowAllDayArea="False"
        ShowWorkTimeOnly="True"
        TimeScale="0:10:0">
        <dxsch:DayView.AppointmentDisplayOptions>
            <dxsch:SchedulerDayViewAppointmentDisplayOptions SnapToCellsMode="Never" />
        </dxsch:DayView.AppointmentDisplayOptions>
    </dxsch:DayView>
</dxsch:SchedulerControl.DayView>
<dxsch:SchedulerControl.FullWeekView>
    <dxsch:FullWeekView Enabled="True"
        ResourcesPerPage="5"
        ShowAllDayArea="False"
        ShowWorkTimeOnly="True"
        TimeScale="0:10:0">
        <dxsch:FullWeekView.AppointmentDisplayOptions>
            <dxsch:SchedulerDayViewAppointmentDisplayOptions SnapToCellsMode="Never" />
        </dxsch:FullWeekView.AppointmentDisplayOptions>
    </dxsch:FullWeekView>
</dxsch:SchedulerControl.FullWeekView>
<dxsch:SchedulerControl.WorkWeekView>
    <dxsch:WorkWeekView ResourcesPerPage="5"
        ShowAllDayArea="False"
        ShowWorkTimeOnly="True"
        TimeScale="0:10:0">
        <dxsch:WorkWeekView.AppointmentDisplayOptions>
            <dxsch:SchedulerDayViewAppointmentDisplayOptions SnapToCellsMode="Never" />
        </dxsch:WorkWeekView.AppointmentDisplayOptions>
    </dxsch:WorkWeekView>
</dxsch:SchedulerControl.WorkWeekView>
<dxsch:SchedulerControl.MonthView>
    <dxsch:MonthView WeekCount="4" />
</dxsch:SchedulerControl.MonthView>

Data Binding

Review the following table to compare the markup code.

DataSource

SchedulerStorage (obsolete)

<dxsch:SchedulerControl.DataSource>
    <dxsch:DataSource AppointmentsSource="{Binding Appointments}" 
           ResourcesSource="{Binding Resources}">
        <dxsch:DataSource.AppointmentMappings>
            <dxsch:AppointmentMappings Start="StartTime"
                End="EndTime"
                AllDay="AllDay"
                Subject="Subject"
                Id="Id"
                Description="Description"
                LabelId="LabelId"
                Location="Location"
                RecurrenceInfo="RecurrenceInfo"
                Reminder="ReminderInfo"
                ResourceId="ResourceId"
                StatusId="StatusId"
                TimeZoneId="TimeZoneId"
                Type="Type">
                <dxsch:CustomFieldMapping Mapping="Note" Name="Note" />
            </dxsch:AppointmentMappings>
        </dxsch:DataSource.AppointmentMappings>
        <dxsch:DataSource.ResourceMappings>
            <dxsch:ResourceMappings Id="Id"
                Caption="Caption" />
        </dxsch:DataSource.ResourceMappings>
    </dxsch:DataSource>
</dxsch:SchedulerControl.DataSource>
<dxsch:SchedulerControl.Storage>
    <dxsch:SchedulerStorage>
        <dxsch:SchedulerStorage.AppointmentStorage>
            <dxsch:AppointmentStorage DataSource="{Binding Appointments}">
                <dxsch:AppointmentStorage.Mappings>
                    <dxsch:AppointmentMapping Start="StartTime"
                        End="EndTime"
                        Subject="Subject"
                        AllDay="AllDay"
                        Description="Description"
                        Label="Label"
                        Location="Location"
                        RecurrenceInfo="RecurrenceInfo"
                        ReminderInfo="ReminderInfo"
                        ResourceId="ResourceId"
                        Status="Status"
                        TimeZoneId="TimeZoneId"
                        Type="Type"/>
                </dxsch:AppointmentStorage.Mappings>
                <dxsch:AppointmentStorage.CustomFieldMappings>
                    <dxsch:SchedulerCustomFieldMapping Member="Note" Name="Note"/>
                </dxsch:AppointmentStorage.CustomFieldMappings>
            </dxsch:AppointmentStorage>
        </dxsch:SchedulerStorage.AppointmentStorage>
        <dxsch:SchedulerStorage.ResourceStorage>
            <dxsch:ResourceStorage DataSource="{Binding Resources}">
                <dxsch:ResourceStorage.Mappings>
                    <dxsch:ResourceMapping Id="Id"
                        Caption="Caption"/>
                </dxsch:ResourceStorage.Mappings>
            </dxsch:ResourceStorage>
        </dxsch:SchedulerStorage.ResourceStorage>
    </dxsch:SchedulerStorage>
</dxsch:SchedulerControl.Storage>

Appointments

An AppointmentItem class instance represents the Appointment object. AppointmentItem collections are accessible using the following members:

Collection Member to Access
AppointmentItemCollection SchedulerControl.AppointmentItems. The collection does not contain appointment occurrences.
System.Collections.Generic.IEnumerable<AppointmentItem> SchedulerControl.GetAppointments - returns all existing appointments, including occurrences, in the specified interval.
System.Collections.ObjectModel.ObservableCollection<AppointmentItem> SchedulerControl.SelectedAppointments

Recurring Appointments

  • The SchedulerControl.GetAppointments method returns all appointments within the specified interval, including occurrences and exceptions. To get all occurrences within the specified interval (in the code sample - 5 days), use the following code:

    DevExpress.Mvvm.DateTimeRange interval = new DevExpress.Mvvm.DateTimeRange(DateTime.Today, DateTime.Today.AddDays(5));
    IEnumerable<AppointmentItem> occurrences = this.scheduler.GetAppointments(interval)
        .Where(a => a.Type == DevExpress.XtraScheduler.AppointmentType.Occurrence);
    
  • To determine the recurrence chain interval, use the AppointmentItem.QueryStart and AppointmentItem.QueryEnd properties, respectively.
  • You can assign any appointment to the recurrence chain by making it an exception the specified recurrence pattern using the AppointmentItem.SetExceptionRecurrenceIndex and AppointmentItem.SetExceptionRecurrencePattern methods. The following code snippet demonstrates how to convert an appointment with an index 2 in the Scheduler appointment collection to the exception of the pattern specified by the appointment with index 0 and exception recurrence index 3:

    AppointmentItem apt = this.scheduler.AppointmentItems[2];
    apt.Type = DevExpress.XtraScheduler.AppointmentType.ChangedOccurrence;
    AppointmentItem pattern = this.scheduler.AppointmentItems[0];
    apt.SetExceptionRecurrencePattern(pattern);
    apt.SetExceptionRecurrenceIndex(3);
    

Resources

A ResourceItem class instance represents the Resource object. ResourceItem collections are accessible using the following members:

Collection Member to Access
ResourceItemCollection SchedulerControl.ResourceItems
System.Collections.ObjectModel.ReadOnlyObservableCollection<ResourceItem> SchedulerControl.VisibleResources

A resource does not contain an associated image. The legacy Scheduler has the Resource.ImageBytes property which provides a picture to display in a resource header. At this time, you should use a custom field to store and obtain an image, thus a custom field mapping is required in that situation.

To show an image (text or any control) in the resource header, create a custom template and assign it to the??SchedulerViewBase.ResourceHeaderContentTemplate??property.??The DataContext of this template is a??ResourceHeaderViewModel??object that provides the??Resource??and??Interval??properties. You can use these properties in bindings inside??the Resource Header data template.

Labels

An AppointmentLabelItem class instance represents the appointment’s Label object. A collection of labels is accessible using the SchedulerControl.LabelItems property.

You can bind a data source containing appointment label data to the Scheduler DataSource, in the same manner as appointment and resource data.

<dxsch:SchedulerControl.DataSource>
    <dxsch:DataSource AppointmentLabelsSource="{Binding Labels}">
        <dxsch:DataSource.AppointmentLabelMappings>
            <dxsch:AppointmentLabelMappings Color="Color" 
                Caption="Caption"
                Id="Id" />
        </dxsch:DataSource.AppointmentLabelMappings>
    </dxsch:DataSource>
</dxsch:SchedulerControl.DataSource>

Statuses

An AppointmentStatusItem class instance represents the appointment’s Status object. A collection of statuses is accessible using the SchedulerControl.StatusItems property.

You can bind a data source containing appointment status data to the Scheduler DataSource, in the same manner as appointment and resource data.

<dxsch:Scheduler.DataSource>
    <dxsch:DataSource AppointmentStatusesSource="{Binding Statuses}">
        <dxsch:DataSource.AppointmentStatusMappings>
            <dxsch:AppointmentStatusMappings Brush="Brush" 
                Caption="Caption"
                Id="Id" />
        </dxsch:DataSource.AppointmentStatusMappings>
    </dxsch:DataSource>
</dxsch:Scheduler.DataSource>

Reminders

A ReminderItem class instance represents a reminder for an appointment. A collection of reminders for a particular appointment is accessible using the AppointmentItem.Reminders property.

To create a reminder, use the AppointmentItem.CreateNewReminder method. The HasReminder property is no longer available.

The SchedulerControl.CheckTriggeredReminders method invokes all alerts for outdated appointments at once. A triggered reminder is referenced by a TriggeredReminder object which combines the ReminderItem, the related AppointmentItem and an alert time. A collection of TriggeredReminder objects is accessible using the RemindersWindowShowingEventArgs.TriggeredReminders property. You can handle its CollectionChanged event to be notified about alerts.

Printing

Use the Scheduler Reporting technique as described in the How to: Print a Scheduler Using Reports from a Document Preview Window example.