Ported from WinUI LoopingSelector.
Property
| Name |
| ShouldLoop |
| SelectedItem |
| SelectedIndex |
| Items |
| ItemsWidth |
| ItemsHeight |
| ItemTemplate |
Method
| Name |
| SelectNextItem |
| SelectPreviousItem |
Example
1
| <dev:LoopingSelector x:Name="LoopingSelectorSample" ItemsHeight="40" Height="270" Padding="0,3,0,6" HorizontalContentAlignment="Center" />
|
1
| LoopingSelectorSample.Items = Enumerable.Range(0, 12).Select(x => new LoopingSelectorItem { PrimaryText = x.ToString() } as object).ToList();
|

Demo
you can run demo and see this feature.