cmake/Tests/VSXaml/App.xaml.h

32 lines
660 B
C
Raw Normal View History

2015-08-17 11:37:30 +02:00
//
// App.xaml.h
// Declaration of the App class.
//
#pragma once
#include "App.g.h"
2016-07-09 11:21:54 +02:00
namespace VSXaml {
/// <summary>
/// Provides application-specific behavior to supplement the default
/// Application class.
/// </summary>
ref class App sealed
2015-08-17 11:37:30 +02:00
{
2016-07-09 11:21:54 +02:00
protected:
virtual void OnLaunched(
Windows::ApplicationModel::Activation::LaunchActivatedEventArgs ^
e) override;
2015-08-17 11:37:30 +02:00
2016-07-09 11:21:54 +02:00
internal : App();
2015-08-17 11:37:30 +02:00
2016-07-09 11:21:54 +02:00
private:
void OnSuspending(Platform::Object ^ sender,
Windows::ApplicationModel::SuspendingEventArgs ^ e);
void OnNavigationFailed(
Platform::Object ^ sender,
Windows::UI::Xaml::Navigation::NavigationFailedEventArgs ^ e);
};
2015-08-17 11:37:30 +02:00
}