Path: blob/master/samples/winrt/ImageManipulations/App.xaml.h
16337 views
//*********************************************************1//2// Copyright (c) Microsoft. All rights reserved.3// THIS CODE IS PROVIDED *AS IS* WITHOUT WARRANTY OF4// ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING ANY5// IMPLIED WARRANTIES OF FITNESS FOR A PARTICULAR6// PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT.7//8//*********************************************************910//11// App.xaml.h12// Declaration of the App.xaml class.13//1415#pragma once1617#include "pch.h"18#include "App.g.h"19#include "MainPage.g.h"2021namespace SDKSample22{23ref class App24{25internal:26App();27virtual void OnSuspending(Platform::Object^ sender, Windows::ApplicationModel::SuspendingEventArgs^ pArgs);28Windows::ApplicationModel::Activation::LaunchActivatedEventArgs^ LaunchArgs;29protected:30virtual void OnLaunched(Windows::ApplicationModel::Activation::LaunchActivatedEventArgs^ pArgs) override;31private:32Windows::UI::Xaml::Controls::Frame^ rootFrame;33};34}353637