Files
PowerToys/src/core/Microsoft.PowerToys.Settings.UI/App.xaml.cs

22 lines
682 B
C#
Raw Normal View History

// 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-11 10:43:32 -07:00
namespace Microsoft.PowerToys.Settings.UI
{
public sealed partial class App : XamlApplication
{
public App()
{
2020-03-11 11:37:27 -07:00
Initialize();
// Hide the Xaml Island window
var coreWindow = Windows.UI.Core.CoreWindow.GetForCurrentThread();
var coreWindowInterop = Interop.GetInterop(coreWindow);
Interop.ShowWindow(coreWindowInterop.WindowHandle, Interop.SW_HIDE);
}
}
}