2020-03-05 15:52:59 -08:00
|
|
|
#pragma once
|
2020-03-23 10:44:02 -07:00
|
|
|
#define WIN32_LEAN_AND_MEAN
|
|
|
|
|
#include <Windows.h>
|
2020-03-05 15:52:59 -08:00
|
|
|
#include <winrt/Windows.system.h>
|
|
|
|
|
#include <winrt/windows.ui.xaml.hosting.h>
|
|
|
|
|
#include <windows.ui.xaml.hosting.desktopwindowxamlsource.h>
|
|
|
|
|
#include <winrt/windows.ui.xaml.controls.h>
|
|
|
|
|
#include <winrt/Windows.ui.xaml.media.h>
|
|
|
|
|
#include <winrt/Windows.Foundation.Collections.h>
|
|
|
|
|
#include "winrt/Windows.Foundation.h"
|
|
|
|
|
#include "winrt/Windows.Foundation.Numerics.h"
|
|
|
|
|
#include "winrt/Windows.UI.Xaml.Controls.Primitives.h"
|
2020-03-23 10:44:02 -07:00
|
|
|
#include "winrt/Windows.UI.Text.h"
|
|
|
|
|
#include "winrt/Windows.UI.Core.h"
|
|
|
|
|
#include <stdlib.h>
|
2020-03-05 15:52:59 -08:00
|
|
|
|
|
|
|
|
using namespace winrt;
|
|
|
|
|
using namespace Windows::UI;
|
|
|
|
|
using namespace Windows::UI::Composition;
|
|
|
|
|
using namespace Windows::UI::Xaml::Hosting;
|
|
|
|
|
using namespace Windows::Foundation::Numerics;
|
|
|
|
|
using namespace Windows::UI::Xaml;
|
2020-03-23 10:44:02 -07:00
|
|
|
using namespace Windows::UI::Xaml::Controls;
|