This question is locked. New answers and comments are not allowed.
I just implemented the slideView control for images and I noticed an issue with the main image not on top. The right preview is still on top when the pinch starts. Below is my simple markup
<telerikPrimitives:RadSlideView ItemsSource="{Binding Photos}" SelectedItem="{Binding CurrentPhoto, Mode=TwoWay}" ItemRealizationMode="Default" AdjacentItemsPreviewMode="Both" IsLoopingEnabled="True"> <telerikPrimitives:RadSlideView.ItemTemplate> <DataTemplate> <telerikSlideView:PanAndZoomImage Source="{Binding BestResolutionAvailableUri}" ZoomMode="Free" /> </DataTemplate> </telerikPrimitives:RadSlideView.ItemTemplate> </telerikPrimitives:RadSlideView>