This question is locked. New answers and comments are not allowed.
Hello,
I am trying to find out about how I can start animation playing but only the page was completely turned. For example, if I grab the corner of the page and move it to the other side the page will be turned to the other side. As soon as it was done, I need to start storyboard playing. Any help is highly appreciated! Thank you!
My code:
C#:
I am trying to find out about how I can start animation playing but only the page was completely turned. For example, if I grab the corner of the page and move it to the other side the page will be turned to the other side. As soon as it was done, I need to start storyboard playing. Any help is highly appreciated! Thank you!
My code:
<telerik:RadBook x:Name="Book" Width="820" Height="462" Grid.Column="1" Grid.Row="1" FirstPagePosition="Left"RightPageIndex="1" HardPages="Custom"> <telerik:RadBookItem IsHardPaper="False"> <Grid> <Image Source="Images/Tip1Left.png" Stretch="None" /> </Grid> </telerik:RadBookItem> <telerik:RadBookItem IsHardPaper="False" > <Grid> <Image Source="Images/Tip1Right.png" Stretch="None" /> </Grid> </telerik:RadBookItem> <telerik:RadBookItem IsHardPaper="False"> <Grid> <Image Source="Images/Tip2Left.png" Stretch="None" /> </Grid> </telerik:RadBookItem> <telerik:RadBookItem IsHardPaper="False"> <Grid> <Image Source="Images/Tip2Right.png" Stretch="None" /> </Grid> </telerik:RadBookItem> <telerik:RadBookItem IsHardPaper="False"> <Grid> <Image Source="Images/Tip3Left.png" Stretch="None" /> </Grid> </telerik:RadBookItem> <telerik:RadBookItem IsHardPaper="False"> <Grid> <Image Source="Images/Tip3Right.png" Stretch="None" /> </Grid> </telerik:RadBookItem> </telerik:RadBook>private void OPenTipsPage1(object sender, System.Windows.RoutedEventArgs e) { this.Book.RightPageIndex = 3; }