Skip to content

Instantly share code, notes, and snippets.

@igorkulman
Created December 23, 2014 11:39
Show Gist options
  • Save igorkulman/d61c0a71e8ed0e2fbc1d to your computer and use it in GitHub Desktop.
Save igorkulman/d61c0a71e8ed0e2fbc1d to your computer and use it in GitHub Desktop.
#if WINDOWS_PHONE_APP
frame.ContentTransitions = null;
frame.Navigated += (s, e) =>
{
if (e.SourcePageType != typeof (SplashScreenView))
{
var rootFrame = s as Frame;
rootFrame.ContentTransitions = new TransitionCollection() {new NavigationThemeTransition()};
rootFrame.Navigated -= this.RootFrame_FirstNavigated;
}
};
#endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment