// Copyright (c) Microsoft Corporation. // Licensed under the MIT license. #pragma once #include "MyPage.g.h" #include "../../../src/cascadia/inc/cppwinrt_utils.h" namespace winrt::SampleApp::implementation { struct MyPage : MyPageT { public: MyPage(); void Create(); hstring Title(); private: friend struct MyPageT; // for Xaml to bind events }; } namespace winrt::SampleApp::factory_implementation { BASIC_FACTORY(MyPage); }