40 строки
1013 B
C++
40 строки
1013 B
C++
//*********************************************************
|
|
//
|
|
// Copyright (c) Microsoft. All rights reserved.
|
|
// This code is licensed under the MIT License (MIT).
|
|
// THIS CODE IS PROVIDED *AS IS* WITHOUT WARRANTY OF
|
|
// ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING ANY
|
|
// IMPLIED WARRANTIES OF FITNESS FOR A PARTICULAR
|
|
// PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT.
|
|
//
|
|
//*********************************************************
|
|
|
|
//
|
|
// Scenario1.xaml.h
|
|
// Declaration of the Scenario1 class
|
|
//
|
|
|
|
#pragma once
|
|
|
|
#include "pch.h"
|
|
#include "Scenario1.g.h"
|
|
#include "MainPage.xaml.h"
|
|
|
|
namespace SDKTemplate
|
|
{
|
|
[Windows::Foundation::Metadata::WebHostHidden]
|
|
public ref class Scenario1 sealed
|
|
{
|
|
public:
|
|
Scenario1();
|
|
|
|
protected:
|
|
virtual void OnNavigatedTo(Windows::UI::Xaml::Navigation::NavigationEventArgs^ e) override;
|
|
|
|
private:
|
|
MainPage^ rootPage;
|
|
|
|
void GetThumbnailButton_Click(Platform::Object^ sender, Windows::UI::Xaml::RoutedEventArgs^ e);
|
|
};
|
|
}
|