Ghost1372

everything can be handy

LoopingSelector

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();

DevWinUI

Demo

you can run demo and see this feature.

0%