CustomLibraryThemeProvider.cs
1 // Copyright (c) Microsoft Corporation 2 // The Microsoft Corporation licenses this file to you under the MIT license. 3 // See the LICENSE file in the project root for more information. 4 5 using System.Collections.Generic; 6 7 using ControlzEx.Theming; 8 9 namespace Common.UI 10 { 11 public class CustomLibraryThemeProvider : LibraryThemeProvider 12 { 13 public static readonly CustomLibraryThemeProvider DefaultInstance = new CustomLibraryThemeProvider(); 14 15 public CustomLibraryThemeProvider() 16 : base(true) 17 { 18 } 19 20 /// <inheritdoc /> 21 public override void FillColorSchemeValues(Dictionary<string, string> values, RuntimeThemeColorValues colorValues) 22 { 23 } 24 } 25 }