-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLibraryPage.xaml.h
More file actions
33 lines (27 loc) · 1.13 KB
/
LibraryPage.xaml.h
File metadata and controls
33 lines (27 loc) · 1.13 KB
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
#pragma once
#include "LibraryPage.g.h"
namespace winrt::SuiteInstaller::implementation
{
struct LibraryPage : LibraryPageT<LibraryPage>
{
LibraryPage();
void Prerequisite_Clicked(IInspectable const & sender,
Microsoft::UI::Xaml::Controls::ItemClickEventArgs const & /*e*/);
void InstalledPrerequisite_Clicked(
winrt::Windows::Foundation::IInspectable const & sender,
winrt::Microsoft::UI::Xaml::Controls::ItemClickEventArgs const & e);
private:
SuiteInstaller::Context mContext{ nullptr };
public:
void InstallButton_Click(winrt::Windows::Foundation::IInspectable const & sender,
winrt::Microsoft::UI::Xaml::RoutedEventArgs const & e);
void OpenButton_Click(winrt::Windows::Foundation::IInspectable const & sender,
winrt::Microsoft::UI::Xaml::RoutedEventArgs const & e);
};
} // namespace winrt::SuiteInstaller::implementation
namespace winrt::SuiteInstaller::factory_implementation
{
struct LibraryPage : LibraryPageT<LibraryPage, implementation::LibraryPage>
{
};
} // namespace winrt::SuiteInstaller::factory_implementation