I am using the SfCalendar Control in a xamarin forms application to display a list of calendar events.
<xForms:SfCalendar x:Name="Calendar" DataSource="{Binding CalendarEventCollection}" ShowInlineEvents="True"/>
In my View Model I have a CalendarEventCollection property that I bind to the DataSource of the SfCalendar control. This works fine for when I initially populate the collection.
My app gets events from a web service and needs to update the calendar control. If I add more events to CalendarEventCollection these are not updated on the calendar control.
I notice that CalendarEventCollection implements ObservableCollection<CalendarInlineEvent> so I'm guessing that simply adding to the CalendarEventCollection should just work.
How can I get the SFCalendar control to update when adding new events?