This question is locked. New answers and comments are not allowed.
Hello,
I am using Flipview control to create a book reader application. I'm trying to achieve a page sliding animation with flipview transitions.
i tried all transition types in the list
But it is not working.
<FlipView Grid.Column="0" Grid.Row="1" x:Name="PDFViewer"
VerticalAlignment="Stretch" HorizontalAlignment="Stretch"
Height="Auto" CompositeMode="SourceOver"
ItemsSource="{Binding ImageModels}"
SelectedItem="{Binding Path=SelectedItem, Mode=TwoWay, ElementName=PreviewGrid}"
SelectionChanged="PDFViewer_SelectionChanged"
UseTouchAnimationsForAllNavigation="True"
ScrollViewer.HorizontalScrollBarVisibility="Auto"
ScrollViewer.VerticalScrollBarVisibility="Disabled"
ScrollViewer.HorizontalScrollMode="Enabled"
ScrollViewer.VerticalScrollMode="Disabled"
ScrollViewer.ZoomMode="Enabled" >
<FlipView.Transitions>
<TransitionCollection>
<ContentThemeTransition/>
<PaneThemeTransition/>
</TransitionCollection>
</FlipView.Transitions>
</FlipView>
Any suggestions ?
I am using Flipview control to create a book reader application. I'm trying to achieve a page sliding animation with flipview transitions.
i tried all transition types in the list
But it is not working.
<FlipView Grid.Column="0" Grid.Row="1" x:Name="PDFViewer"
VerticalAlignment="Stretch" HorizontalAlignment="Stretch"
Height="Auto" CompositeMode="SourceOver"
ItemsSource="{Binding ImageModels}"
SelectedItem="{Binding Path=SelectedItem, Mode=TwoWay, ElementName=PreviewGrid}"
SelectionChanged="PDFViewer_SelectionChanged"
UseTouchAnimationsForAllNavigation="True"
ScrollViewer.HorizontalScrollBarVisibility="Auto"
ScrollViewer.VerticalScrollBarVisibility="Disabled"
ScrollViewer.HorizontalScrollMode="Enabled"
ScrollViewer.VerticalScrollMode="Disabled"
ScrollViewer.ZoomMode="Enabled" >
<FlipView.Transitions>
<TransitionCollection>
<ContentThemeTransition/>
<PaneThemeTransition/>
</TransitionCollection>
</FlipView.Transitions>
</FlipView>
Any suggestions ?