App.xaml.h 999 B

1234567891011121314151617181920212223242526272829303132333435
  1. //*********************************************************
  2. //
  3. // Copyright (c) Microsoft. All rights reserved.
  4. // THIS CODE IS PROVIDED *AS IS* WITHOUT WARRANTY OF
  5. // ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING ANY
  6. // IMPLIED WARRANTIES OF FITNESS FOR A PARTICULAR
  7. // PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT.
  8. //
  9. //*********************************************************
  10. //
  11. // App.xaml.h
  12. // Declaration of the App.xaml class.
  13. //
  14. #pragma once
  15. #include "pch.h"
  16. #include "App.g.h"
  17. #include "MainPage.g.h"
  18. namespace SDKSample
  19. {
  20. ref class App
  21. {
  22. internal:
  23. App();
  24. virtual void OnSuspending(Platform::Object^ sender, Windows::ApplicationModel::SuspendingEventArgs^ pArgs);
  25. Windows::ApplicationModel::Activation::LaunchActivatedEventArgs^ LaunchArgs;
  26. protected:
  27. virtual void OnLaunched(Windows::ApplicationModel::Activation::LaunchActivatedEventArgs^ pArgs) override;
  28. private:
  29. Windows::UI::Xaml::Controls::Frame^ rootFrame;
  30. };
  31. }