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

Demo
you can run demo and see this feature.