Hello,
i have the problem that the VisibleDatesChangedEvent is raised 3 times when i change the scheduleview or when i use navigateTo.
I use this event to load appointments with the visibleDates values.
Sample:
void tapImageView4_Tapped(object sender, EventArgs e)
{
//Today ----
Schedule.NavigateTo(DateTime.Now);
}
private void Schedule_VisibleDatesChangedEvent(object sender, VisibleDatesChangedEventArgs args)
{
//View changed ----
if (args != null && args.visibleDates.Count > 0)
{
LoadAppointments(args.visibleDates[0].Date.ToString("dd.MM.yyyy 00:00:00"), args.visibleDates[args.visibleDates.Count - 1].Date.ToString("dd.MM.yyyy 23:59:59"));
}
}
Please can you check this issue.
Thank you and best regards