Articles in this section
Category / Section

How to get the month and year of month view in Xamarin.Forms Schedule (SfScheduler)?

1 min read

You can get the month and year of month view by using the VisibleDatesChanged event in Xamarin.Forms Scheduler feature tour.

XAML

Set the schedule view as MonthView. Binding the behavior to the SfSchedule to handle the VisibleDatesChanged event handler.

<ContentPage.Content>
        <Grid>
            <schedule:SfSchedule x:Name="Schedule"
                                 ScheduleView="MonthView">
            </schedule:SfSchedule>
        </Grid>
    </ContentPage.Content>
    <ContentPage.Behaviors>
        <local:SchedulerPageBehavior/>
    </ContentPage.Behaviors>

C#

In VisibleDatesChanged, you can get the month and year of month view by using the VisibleDates property of VisibleDatesChangedEventArgs.

public class SchedulerPageBehavior : Behavior<ContentPage>
{
    SfSchedule schedule;
    protected override void OnAttachedTo(ContentPage bindable)
    {
        base.OnAttachedTo(bindable);
        this.schedule = bindable.Content.FindByName<SfSchedule>("Schedule");
        this.WireEvents();
    }
    private void WireEvents()
    {
        this.schedule.VisibleDatesChangedEvent += Schedule_VisibleDatesChangedEvent;
    }
 
    private void Schedule_VisibleDatesChangedEvent(object sender, VisibleDatesChangedEventArgs e)
    {
        var month = e.visibleDates[e.visibleDates.Count / 2].Date.Month;
        var year = e.visibleDates[e.visibleDates.Count / 2].Date.Year;
        App.Current.MainPage.DisplayAlert(month.ToString(), year.ToString(), "Ok");
    }
    protected override void OnDetachingFrom(ContentPage bindable)
    {
        base.OnDetachingFrom(bindable);
        this.UnWireEvents();
    }
    private void UnWireEvents()
    {
        this.schedule.VisibleDatesChangedEvent += Schedule_VisibleDatesChangedEvent;
    }
}

View sample in GitHub

Demo image for month and date

Conclusion

I hope you enjoyed learning about how to get the month and year of month view in Xamarin.Forms Schedule (SfSchedule).

You can refer to our Xamarin.Forms Scheduler feature tour page to know about its other groundbreaking feature representations. You can also explore our documentation to understand how to create and manipulate data.

For current customers, you can check out our components from the License and Downloads page. If you are new to Syncfusion, you can try our 30-day free trial to check out our other controls.

If you have any queries or require clarifications, please let us know in the comments section below. You can also contact us through our support forumsDirect-Trac, or feedback portal. We are always happy to assist you!

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please  to leave a comment
Access denied
Access denied