How can I help you?
Looping support in .NET MAUI Date Picker (SfDatePicker)
The EnableLooping property allows you to enable looping support in the date picker control. With looping enabled, the control seamlessly navigates from the last item to the first item and back again, iterating in both forward and backward directions.
To enable the looping in date picker by setting the EnableLooping property as true. The default value is false.
<picker:SfDatePicker x:Name="datepicker"
EnableLooping="True"/>
SfDatePicker datePicker = new SfDatePicker()
{
EnableLooping = True,
};
this.Content = datePicker;