Hi,
I would like to display inlineview in MonthView when page is loaded. I set SelectedDate programatically using MVVM and raising PropertyChanged but, it doesnt display InlineView. Is it even possible?
thanks,
Emil
Xaml:
<schedule:SfSchedule x:Name="Schedule" Grid.Row="1" ShowAppointmentsInline="True" HorizontalOptions="FillAndExpand" AllowAppointmentDrag="True" AppointmentDrop="Schedule_AppointmentDrop"
Locale="{Binding SfScheduleLocale}" FirstDayOfWeek="2" VerticalOptions="FillAndExpand" DataSource="{Binding Schedules}" SelectedDate="{Binding SelectedDate}">
<schedule:SfSchedule.MonthCellStyle>
<schedule:MonthViewCellStyle
BackgroundColor="White"
TextColor="Black"
NextMonthBackgroundColor="White"
NextMonthTextColor="Gray"
PreviousMonthBackgroundColor="Silver"
PreviousMonthTextColor="Black"
TodayBackgroundColor="Red"
TodayTextColor="White">
</schedule:MonthViewCellStyle>
</schedule:SfSchedule.MonthCellStyle>
</schedule:SfSchedule>
In ViewModel
SelectedDate = DateTime.Now;
RaisePropertyChanged("SelectedDate");