mirror of
https://github.com/izzy2lost/cpython.git
synced 2026-03-10 11:29:24 -07:00
25 lines
511 B
C++
25 lines
511 B
C++
//
|
|
// App.xaml.h
|
|
// Deklaration der App-Klasse
|
|
//
|
|
|
|
#pragma once
|
|
|
|
#include "App.g.h"
|
|
|
|
namespace python34app
|
|
{
|
|
/// <summary>
|
|
/// Stellt das anwendungsspezifische Verhalten bereit, um die Standardanwendungsklasse zu ergänzen.
|
|
/// </summary>
|
|
ref class App sealed
|
|
{
|
|
public:
|
|
App();
|
|
virtual void OnLaunched(Windows::ApplicationModel::Activation::LaunchActivatedEventArgs^ pArgs) override;
|
|
|
|
private:
|
|
void OnSuspending(Platform::Object^ sender, Windows::ApplicationModel::SuspendingEventArgs^ e);
|
|
};
|
|
}
|