This question is locked. New answers and comments are not allowed.
I have a Windows Phone 8 app with Telerik RadControls 2014.1.226.3040. I have created a SlideView and I have set AdjacentItemsPreviewMode to Next:
But it does not show a preview of the next item. Here is a complete solution: https://dl.dropboxusercontent.com/u/73642/PhoneApp1.zip
<Grid x:Name="LayoutRoot" Background="Transparent"> <Grid.RowDefinitions> <RowDefinition Height="Auto"/> <RowDefinition Height="*"/> <RowDefinition Height="Auto"/> </Grid.RowDefinitions> <!--TitlePanel contains the name of the application and page title--> <StackPanel Grid.Row="0" Margin="12,17,0,28"> <TextBlock Text="{Binding LocalizedResources.ApplicationTitle, Source={StaticResource LocalizedStrings}}" Style="{StaticResource PhoneTextNormalStyle}"/> <TextBlock Text="title" Margin="9,-7,0,0" Style="{StaticResource PhoneTextTitle1Style}"/> </StackPanel> <telerikPrimitives:RadSlideView ItemsSource="{Binding}" AdjacentItemsPreviewMode="Next" ItemRealizationMode="Default" Grid.Row="1" x:Name="RadSlideView"> <telerikPrimitives:RadSlideView.ItemTemplate> <DataTemplate> </DataTemplate> </telerikPrimitives:RadSlideView.ItemTemplate> </telerikPrimitives:RadSlideView> <!--ContentPanel - place additional content here--> <StackPanel x:Name="ContentPanel" Grid.Row="2" Margin="12,0,12,0"> <Button Content="b1" /> <Button Content="b2" /> <Button Content="b3" /> </StackPanel> </Grid>But it does not show a preview of the next item. Here is a complete solution: https://dl.dropboxusercontent.com/u/73642/PhoneApp1.zip