This is a migrated thread and some comments may be shown as answers.

Transition problem

2 Answers 70 Views
SlideView
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
Hung
Top achievements
Rank 1
Hung asked on 21 Jul 2013, 01:38 PM
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>
Hi, I've just buy a license of RadControl for Windows Phone 8 and try to integrate its SlideView control to
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.

2 Answers, 1 is accepted

Sort by
0
Deyan
Telerik team
answered on 22 Jul 2013, 01:29 PM
Hello Hung,

Thanks for writing.

Setting the CacheMode property to BitmapCache on RadSlideView will address this issue.

Regards,
Deyan
Telerik
Have a suggestion or face a problem - you can use the Ideas & Feedback portal to submit ideas, feedback and vote for them.
0
Suharsya
Top achievements
Rank 1
answered on 07 Aug 2013, 07:11 PM
i also having this issue, please help

## update

the suggestion above is solve my problem, thanks
Tags
SlideView
Asked by
Hung
Top achievements
Rank 1
Answers by
Deyan
Telerik team
Suharsya
Top achievements
Rank 1
Share this question
or