Files
cpython/UWP/python34app/Settings.xaml.h
2020-11-05 19:34:21 -07:00

25 lines
621 B
C++

//
// Settings.xaml.h
// Deklaration der Settings-Klasse
//
#pragma once
#include "Settings.g.h"
#include "PyShell.xaml.h"
namespace python34app
{
[Windows::Foundation::Metadata::WebHostHidden]
public ref class Settings sealed
{
PyShell ^shell;
public:
Settings(PyShell ^shell);
private:
void do_close(Platform::Object^ sender, Windows::UI::Xaml::RoutedEventArgs^ e);
void white_on_black(Platform::Object^ sender, Windows::UI::Xaml::RoutedEventArgs^ e);
void black_on_white(Platform::Object^ sender, Windows::UI::Xaml::RoutedEventArgs^ e);
};
}