BlueWallet/windows/bluewallet/App.h

20 lines
722 B
C
Raw Normal View History

2021-06-24 12:46:08 -04:00
#pragma once
#include "App.xaml.g.h"
namespace activation = winrt::Windows::ApplicationModel::Activation;
namespace winrt::bluewallet::implementation
{
struct App : AppT<App>
{
App() noexcept;
void OnLaunched(activation::LaunchActivatedEventArgs const&);
2021-07-20 12:21:46 -04:00
void OnActivated(Windows::ApplicationModel::Activation::IActivatedEventArgs const &e);
2021-06-24 12:46:08 -04:00
void OnSuspending(IInspectable const&, Windows::ApplicationModel::SuspendingEventArgs const&);
void OnNavigationFailed(IInspectable const&, Windows::UI::Xaml::Navigation::NavigationFailedEventArgs const&);
private:
using super = AppT<App>;
};
} // namespace winrt::bluewallet::implementation