ui/winui/App.xaml.h

branch
newapi
changeset 205
b1ac0dd1d38b
equal deleted inserted replaced
204:4a258d47f964 205:b1ac0dd1d38b
1 // Copyright (c) Microsoft Corporation and Contributors.
2 // Licensed under the MIT License.
3
4 #pragma once
5
6 #include "App.xaml.g.h"
7
8 namespace winrt::winui::implementation
9 {
10 struct App : AppT<App>
11 {
12 App();
13
14 void OnLaunched(Microsoft::UI::Xaml::LaunchActivatedEventArgs const&);
15
16 private:
17 winrt::Microsoft::UI::Xaml::Window window{ nullptr };
18 };
19 }

mercurial