Path: blob/master/samples/winrt_universal/PhoneTutorial/App.xaml.h
16339 views
//1// App.xaml.h2// Declaration of the App class.3//45#pragma once67#include "App.g.h"89namespace PhoneTutorial10{11/// <summary>12/// Provides application-specific behavior to supplement the default Application class.13/// </summary>14ref class App sealed15{16public:17App();1819virtual void OnLaunched(Windows::ApplicationModel::Activation::LaunchActivatedEventArgs^ e) override;2021private:22Windows::UI::Xaml::Media::Animation::TransitionCollection^ _transitions;23Windows::Foundation::EventRegistrationToken _firstNavigatedToken;2425void OnSuspending(Platform::Object^ sender, Windows::ApplicationModel::SuspendingEventArgs^ e);26void RootFrame_FirstNavigated(Platform::Object^ sender, Windows::UI::Xaml::Navigation::NavigationEventArgs^ e);27};28}293031