PowerToys/src/settings-ui/Microsoft.PowerToys.Settings.UI/App.xaml.cs

23 lines
735 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.PowerToys.Settings.UI.Helpers;
using Microsoft.Toolkit.Win32.UI.XamlHost;
2020-03-12 01:43:32 +08:00
namespace Microsoft.PowerToys.Settings.UI
{
public sealed partial class App : XamlApplication
{
public App()
{
2020-03-12 02:37:27 +08:00
Initialize();
// Hide the Xaml Island window
var coreWindow = Windows.UI.Core.CoreWindow.GetForCurrentThread();
var coreWindowInterop = Interop.GetInterop(coreWindow);
NativeMethods.ShowWindow(coreWindowInterop.WindowHandle, Interop.SW_HIDE);
}
}
}