-
Notifications
You must be signed in to change notification settings - Fork 59
Expand file tree
/
Copy pathMoonlightWelcome.xaml.h
More file actions
31 lines (28 loc) · 1.09 KB
/
Copy pathMoonlightWelcome.xaml.h
File metadata and controls
31 lines (28 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
//
// MoonlightWelcome.xaml.h
// Dichiarazione della classe MoonlightWelcome
//
#pragma once
#include "MoonlightWelcome.g.h"
namespace moonlight_xbox_dx
{
/// <summary>
/// Pagina vuota che può essere usata autonomamente oppure per l'esplorazione all'interno di un frame.
/// </summary>
[Windows::Foundation::Metadata::WebHostHidden]
public ref class MoonlightWelcome sealed
{
private:
Windows::Foundation::EventRegistrationToken m_back_token;
public:
MoonlightWelcome();
private:
void GoForward(Platform::Object^ sender, Windows::UI::Xaml::RoutedEventArgs^ e);
void GoBack(Platform::Object^ sender, Windows::UI::Xaml::RoutedEventArgs^ e);
void CloseButton_Click(Platform::Object^ sender, Windows::UI::Xaml::RoutedEventArgs^ e);
void Page_KeyDown(Platform::Object^ sender, Windows::UI::Xaml::Input::KeyRoutedEventArgs^ e);
void OnBackRequested(Platform::Object^ e, Windows::UI::Core::BackRequestedEventArgs^ args);
void OnLoaded(Platform::Object^ sender, Windows::UI::Xaml::RoutedEventArgs^ e);
void OnUnloaded(Platform::Object^ sender, Windows::UI::Xaml::RoutedEventArgs^ e);
};
}