I am currently upgrading our customer Aplication from Telerik UI for WPF version 2010.3.1314 to Telerik UI for WPF version 2016.2.613.
Currently I am upgrading RadScheduler to RadScheduleView in XAML file.
- ViewMode="Day"
===> ActiveViewDefinitionIndex="0"
<telerik:RadScheduleView.ViewDefinitions>
<telerik:DayViewDefinition/>
<telerik:MonthViewDefinition/>
<telerik:WeekViewDefinition/>
<telerik:TimelineViewDefinition/>
</telerik:RadScheduleView.ViewDefinitions>
- AppointmentTemplate="{StaticResource AppointmentTemplate}"
===> AppointmentItemContentTemplate="{StaticResource AppointmentTemplate}"
- SelectedViewStartDateChanged="_RadScheduler_SelectedViewStartDateChanged"
===> VisibleRangeChanged="_RadScheduler_SelectedViewStartDateChanged" - SelectedTimeSlot="{Binding Path=SelectedTimeSlot,Mode=TwoWay}"
===> SelectedSlot="{Binding Path=SelectedTimeSlot,Mode=TwoWay}" - IsReadOnly="True"
===> SpecialSlotsSource="{Binding EventSlots}" - IsViewModeNavigationEnabled="True"
===> NavigationHeaderVisibility="Collapsed" - MonthViewScrollBarVisibility="Collapsed"
===> ??? - CalendarVisibility="Visible"
===>??? - DisplayEmptyGroup="False"
===><telerik:RadScheduleView.GroupDescriptionsSource ShowNullGroup="False">
<telerik:GroupDescriptionCollection />
</telerik:RadScheduleView.GroupDescriptionsSource> - ActiveViewDefinitionChanged="_RadScheduler_ActiveViewDefinitionChanged"
===>AppointmentSelectionChanged ="_RadScheduler_ActiveViewDefinitionChanged" - TimeSlotTemplateSelector="{StaticResource SelectTemplate}"
===>AppointmentItemContentTemplateSelector="{StaticResource SelectTemplate}"
I cannot run the program yet because of a large number line of code in project.
Please help me to review my modify source code, expecialy how to migrate MonthViewScrollBarVisibility="Collapsed" and alendarVisibility="Visible".
Thanks,Liem.