2020-04-11 06:22:07 +08: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.
|
|
|
|
|
|
2021-02-26 19:21:58 +08:00
|
|
|
|
using System.Globalization;
|
2020-10-30 05:24:16 +08:00
|
|
|
|
using Microsoft.PowerToys.Settings.UI.Helpers;
|
2021-02-26 19:21:58 +08:00
|
|
|
|
using Microsoft.PowerToys.Settings.UI.Library;
|
2020-04-11 06:22:07 +08:00
|
|
|
|
using Microsoft.Toolkit.Win32.UI.XamlHost;
|
2020-03-07 09:46:51 +08:00
|
|
|
|
|
2020-03-12 01:43:32 +08:00
|
|
|
|
namespace Microsoft.PowerToys.Settings.UI
|
2020-03-07 09:46:51 +08:00
|
|
|
|
{
|
|
|
|
|
public sealed partial class App : XamlApplication
|
|
|
|
|
{
|
|
|
|
|
public App()
|
|
|
|
|
{
|
2020-03-12 02:37:27 +08:00
|
|
|
|
Initialize();
|
2020-05-10 05:10:57 +08:00
|
|
|
|
|
|
|
|
|
// Hide the Xaml Island window
|
|
|
|
|
var coreWindow = Windows.UI.Core.CoreWindow.GetForCurrentThread();
|
|
|
|
|
var coreWindowInterop = Interop.GetInterop(coreWindow);
|
2020-10-30 05:24:16 +08:00
|
|
|
|
NativeMethods.ShowWindow(coreWindowInterop.WindowHandle, Interop.SW_HIDE);
|
2020-03-07 09:46:51 +08:00
|
|
|
|
}
|
2021-02-26 19:21:58 +08:00
|
|
|
|
|
|
|
|
|
public static bool IsDarkTheme()
|
|
|
|
|
{
|
|
|
|
|
var selectedTheme = SettingsRepository<GeneralSettings>.GetInstance(settingsUtils).SettingsConfig.Theme.ToUpper(CultureInfo.InvariantCulture);
|
|
|
|
|
var defaultTheme = new Windows.UI.ViewManagement.UISettings();
|
|
|
|
|
var uiTheme = defaultTheme.GetColorValue(Windows.UI.ViewManagement.UIColorType.Background).ToString(System.Globalization.CultureInfo.InvariantCulture);
|
|
|
|
|
return selectedTheme == "DARK" || (selectedTheme == "SYSTEM" && uiTheme == "#FF000000");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private static ISettingsUtils settingsUtils = new SettingsUtils();
|
2020-03-07 09:46:51 +08:00
|
|
|
|
}
|
|
|
|
|
}
|