2020-04-10 15:22:07 -07:00
|
|
|
|
// Copyright (c) Microsoft Corporation
|
|
|
|
|
|
// The Microsoft Corporation licenses this file to you under the MIT license.
|
|
|
|
|
|
// See the LICENSE file in the project root for more information.
|
|
|
|
|
|
|
|
|
|
|
|
using Microsoft.Toolkit.Win32.UI.XamlHost;
|
2020-03-06 17:46:51 -08:00
|
|
|
|
|
2020-03-11 10:43:32 -07:00
|
|
|
|
namespace Microsoft.PowerToys.Settings.UI
|
2020-03-06 17:46:51 -08:00
|
|
|
|
{
|
|
|
|
|
|
public sealed partial class App : XamlApplication
|
|
|
|
|
|
{
|
|
|
|
|
|
public App()
|
|
|
|
|
|
{
|
2020-03-11 11:37:27 -07:00
|
|
|
|
Initialize();
|
2020-05-09 14:10:57 -07:00
|
|
|
|
|
|
|
|
|
|
// Hide the Xaml Island window
|
|
|
|
|
|
var coreWindow = Windows.UI.Core.CoreWindow.GetForCurrentThread();
|
|
|
|
|
|
var coreWindowInterop = Interop.GetInterop(coreWindow);
|
|
|
|
|
|
Interop.ShowWindow(coreWindowInterop.WindowHandle, Interop.SW_HIDE);
|
2020-03-06 17:46:51 -08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|