24 lines
503 B
C++
24 lines
503 B
C++
#pragma once
|
|
|
|
#include "MainPage.g.h"
|
|
|
|
namespace winrt::AutoCat::implementation
|
|
{
|
|
struct MainPage : MainPageT<MainPage>
|
|
{
|
|
MainPage();
|
|
|
|
int32_t MyProperty();
|
|
void MyProperty(int32_t value);
|
|
|
|
void Login_Click(winrt::Windows::Foundation::IInspectable const& sender, winrt::Windows::UI::Xaml::RoutedEventArgs const& e);
|
|
};
|
|
}
|
|
|
|
namespace winrt::AutoCat::factory_implementation
|
|
{
|
|
struct MainPage : MainPageT<MainPage, implementation::MainPage>
|
|
{
|
|
};
|
|
}
|