swh:1:snp:a6330e89b35f0959a588079a2c4dc65f44d6e08a
Raw File
Tip revision: aa6b2180bf9926e62641871908ae059c19ddb3a3 authored by Kitware Robot on 07 August 2024, 04:01:18 UTC
CMake Nightly Date Stamp
Tip revision: aa6b218
App.xaml.h
//
// App.xaml.h
// Declaration of the App class.
//

#pragma once

#include "App.g.h"

namespace VSXaml {
/// <summary>
/// Provides application-specific behavior to supplement the default
/// Application class.
/// </summary>
ref class App sealed
{
protected:
  virtual void OnLaunched(
    Windows::ApplicationModel::Activation::LaunchActivatedEventArgs ^
    e) override;

  internal : App();

private:
  void OnSuspending(Platform::Object ^ sender,
                    Windows::ApplicationModel::SuspendingEventArgs ^ e);
  void OnNavigationFailed(
    Platform::Object ^ sender,
    Windows::UI::Xaml::Navigation::NavigationFailedEventArgs ^ e);
};
}
back to top