24 строки
461 B
C++
24 строки
461 B
C++
//
|
|
// BlankPage.xaml.h
|
|
// Declaration of the BlankPage class
|
|
//
|
|
|
|
#pragma once
|
|
|
|
#include "BlankPage.g.h"
|
|
|
|
namespace UAPCPP
|
|
{
|
|
/// <summary>
|
|
/// An empty page that can be used on its own or navigated to within a Frame.
|
|
/// </summary>
|
|
[Windows::Foundation::Metadata::WebHostHidden]
|
|
public ref class BlankPage sealed
|
|
{
|
|
public:
|
|
BlankPage();
|
|
private:
|
|
void button_Click(Platform::Object^ sender, Windows::UI::Xaml::RoutedEventArgs^ e);
|
|
};
|
|
}
|