Created
December 23, 2014 11:39
-
-
Save igorkulman/d61c0a71e8ed0e2fbc1d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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