mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-02-24 12:11:09 +01:00
* [Awake] Don't use Process.Exit and move to CsWin32 * [PowerLauncher] Remove unused API * [ColorPicker] Use cancellable NativeEventWaiter + cleanup using * [TextExtractor] Don't use Environment.Exit * [MeasureTool] Don't use Environment.Exit(0); * [FZE] don't use Environment.Exit and fix WaitForPowerToysRunner
26 lines
723 B
C#
26 lines
723 B
C#
// 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 System.Collections.Generic;
|
|
|
|
using ControlzEx.Theming;
|
|
|
|
namespace Common.UI
|
|
{
|
|
public class CustomLibraryThemeProvider : LibraryThemeProvider
|
|
{
|
|
public static readonly CustomLibraryThemeProvider DefaultInstance = new CustomLibraryThemeProvider();
|
|
|
|
public CustomLibraryThemeProvider()
|
|
: base(true)
|
|
{
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public override void FillColorSchemeValues(Dictionary<string, string> values, RuntimeThemeColorValues colorValues)
|
|
{
|
|
}
|
|
}
|
|
}
|