This question is locked. New answers and comments are not allowed.
Mainpage.xaml which is Page
<Grid x:Name="LayoutRoot" Background="White"> <views:StoryDetail x:Name="StoryDetailOnPage"/></Grid>StoryDetail.xaml which is UserControl
<Grid x:Name="LayoutRoot" Background="Transparent"> <telerikPrimitives:RadSlideView x:Name="slideView" ItemsSource="{Binding Path=ListParas}"> <telerikPrimitives:RadSlideView.ItemTemplate> <DataTemplate> <Grid > <Grid.RowDefinitions> <RowDefinition Height="Auto"/> <RowDefinition Height="Auto"/> <RowDefinition Height="Auto"/> </Grid.RowDefinitions> <toolkit:ContextMenuService.ContextMenu> <toolkit:ContextMenu x:Name="ContextMenu"> <toolkit:MenuItem x:Name="Bookmark" Header="Bookmark this paragraph" Click="Bookmark_Click"/> </toolkit:ContextMenu> </toolkit:ContextMenuService.ContextMenu> <Image Stretch="UniformToFill" Source="{Binding Path=ImgSrc}"/> <TextBlock x:Name="Paragraph" Text="{Binding Path=Paragraph, Mode=OneWay}" Grid.Row="1"/> <TextBlock x:Name="Detail" Text="{Binding Path=Detail}" Grid.Row="2"/> </Grid> </DataTemplate> </telerikPrimitives:RadSlideView.ItemTemplate> </telerikPrimitives:RadSlideView> </Grid>my existing application as code written above. However I got a strange UI behavior whenever SlideView transition to
next/previous SlideViewItem as you can see in the video here http://www.youtube.com/watch?v=W1sk9oME1rs&feature=youtu.be
. What am I wrong? I use the latest Q3 version.