Looping support in .NET MAUI Picker (SfPicker)
21 Jul 20261 minute to read
The EnableLooping property allows you to enable looping support in the 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 looping in the picker, set the EnableLooping property to true. The default value is false.
<picker:SfPicker x:Name="picker"
EnableLooping="True"/>
SfPicker picker = new SfPicker()
{
EnableLooping = true,
};
this.Content = picker;