I’ve downloaded the most recent Windows.Phone.Controls.Toolkit and in the app.xaml.cs changed
RootFrame = new PhoneApplicationFrame();
to
RootFrame = new TransitionFrame();
I expected some change in the transition between pages, but nothing happened at all.
Do I need to do something more to achieve more interesting transitions?
You have to add reference
xmlns:toolkit="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone.Controls.Toolkit"and try Turnstile effect by adding:
to each page you want to have transition effect.
Or you can try other effects such as: Slide, Swivel, Rotate and Roll.