Windows Phone 8: How to animate page navigation?
c#, windows-phone, windows-phone-8
Solution
You could use the navigational transitions from the toolkit. http://phone.codeplex.com/
Problem
I am new to Win Phone 8 development and after a tiresome unfruitful Googling, I am posting this simple question here: How to animate page navigation? Yes, I know how to navigate from one page to another: ``` NavigationService.Navigate(new Uri("/AnotherPage.xaml", UriKind.Relative)); ``` But this navigation is instant, and doesn't include any kind of transition. Please help SO!