Hi, I am stuck at:
I can set the SlidingToIndex command, but I can't define the {binding} part like for the RadListview (for exemple: <telerikListViewCommands:ListViewUserCommand Id="ItemTap" Command="{Binding ItemTapCommand}" />)
Any idea?
<telerikPrimitives:RadSlideView x:Name="slideView"> <telerikPrimitives:RadSlideView.ItemsSource> <x:Array Type="{x:Type ContentView}"> <ContentView> <telerikInput:RadCalendar Margin="50, 30"/> </ContentView> <ContentView> <Label HorizontalOptions="Center" VerticalOptions="CenterAndExpand" Text="Other View" TextColor="Blue" /> </ContentView> <ContentView> <Label HorizontalOptions="Center" VerticalOptions="CenterAndExpand" Text="Another View" TextColor="Red" /> </ContentView> </x:Array> </telerikPrimitives:RadSlideView.ItemsSource> <telerikPrimitives:RadSlideView.Commands> <telerikSlideViewCommands:SlideViewCommand Id="SlidingToIndex" /> </telerikPrimitives:RadSlideView.Commands></telerikPrimitives:RadSlideView>