|
<rotator:SfRotator x:Name="WizardRotator" ItemsSource="{Binding WizardTemplates}"
ItemTemplate="{StaticResource WizardItemTemplate}" EnableLooping="false"
NavigationStripMode="Dots" HeightRequest="500"
HorizontalOptions="FillAndExpand" SelectedIndex="{Binding WizardIndex, Mode=TwoWay}" >
<rotator:SfRotator.Behaviors>
<behavior:EventToCommandBehavior EventName="SelectedIndexChanged"
Command="{Binding SelectedIndexChangedCommand}"
Converter="{StaticResource SelectedIndexChangedConverter}" />
</rotator:SfRotator.Behaviors>
</rotator:SfRotator> |