// Copyright (c) Microsoft Corporation. // Licensed under the MIT license. #include "pch.h" #include "MyPage.h" #include #include "MyPage.g.cpp" #include "..\..\..\src\cascadia\UnitTests_Control\MockControlSettings.h" using namespace std::chrono_literals; using namespace winrt::Microsoft::Terminal; namespace winrt { namespace MUX = Microsoft::UI::Xaml; namespace WUX = Windows::UI::Xaml; using IInspectable = Windows::Foundation::IInspectable; } namespace winrt::SampleApp::implementation { MyPage::MyPage() { InitializeComponent(); } void MyPage::Create() { TerminalConnection::EchoConnection conn{}; auto settings = winrt::make_self(); Control::TermControl control{ *settings, conn }; InProcContent().Children().Append(control); // Once the control loads (and not before that), write some text for debugging: control.Initialized([conn](auto&&, auto&&) { conn.WriteInput(L"This TermControl is hosted in-proc..."); }); } // Method Description: // - Gets the title of the currently focused terminal control. If there // isn't a control selected for any reason, returns "Windows Terminal" // Arguments: // - // Return Value: // - the title of the focused control if there is one, else "Windows Terminal" hstring MyPage::Title() { return { L"Sample Application" }; } }