20 lines
392 B
C++
20 lines
392 B
C++
// Copyright (c) Microsoft Corporation.
|
|
// Licensed under the MIT License.
|
|
|
|
#pragma once
|
|
|
|
#include "App.xaml.g.h"
|
|
|
|
namespace winrt::CppPackagedDesktopTaskbarPin::implementation
|
|
{
|
|
struct App : AppT<App>
|
|
{
|
|
App();
|
|
|
|
void OnLaunched(Microsoft::UI::Xaml::LaunchActivatedEventArgs const&);
|
|
|
|
private:
|
|
winrt::Microsoft::UI::Xaml::Window window{ nullptr };
|
|
};
|
|
}
|