forked from duchuule/vba10
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCheatPane.xaml.h
39 lines (28 loc) · 1.01 KB
/
CheatPane.xaml.h
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
32
33
34
35
36
37
38
39
//
// CheatPane.xaml.h
// Declaration of the CheatPane class
//
#pragma once
#include "CheatPane.g.h"
#include "CheatData.h"
using namespace Platform::Collections;
namespace VBA10
{
[Windows::Foundation::Metadata::WebHostHidden]
public ref class CheatPane sealed
{
public:
property bool Cancelled;
//property IObservableVector<CheatData ^> ^ cheatCodes;
CheatPane();
private:
void DeleteCheatButton_Click(Platform::Object^ sender, Windows::UI::Xaml::RoutedEventArgs^ e);
//void backbutton_Click(Platform::Object^ sender, Windows::UI::Xaml::RoutedEventArgs^ e);
void Close(void);
void RefreshCheatList(void);
bool CheckCodeFormat(Platform::String ^codeText, void (*messageCallback)(Platform::String ^));
Vector<Platform::String ^> ^GetCodes(Platform::String ^code);
void addButton_Click(Platform::Object^ sender, Windows::UI::Xaml::RoutedEventArgs^ e);
void enableCheatBox_Checked(Platform::Object^ sender, Windows::UI::Xaml::RoutedEventArgs^ e);
};
}