AmbientLight.App.RootFrame_FirstNavigated C# (CSharp) Метод

RootFrame_FirstNavigated() приватный Метод

Restores the content transitions after the app has launched.
private RootFrame_FirstNavigated ( object sender, NavigationEventArgs e ) : void
sender object The object where the handler is attached.
e Windows.UI.Xaml.Navigation.NavigationEventArgs Details about the navigation event.
Результат void
        private void RootFrame_FirstNavigated(object sender, NavigationEventArgs e)
        {
            var rootFrame = sender as Frame;
            rootFrame.ContentTransitions = this.transitions ?? new TransitionCollection() { new NavigationThemeTransition() };
            rootFrame.Navigated -= this.RootFrame_FirstNavigated;
        }
#endif