Added RegistryKeyExtensions

This commit is contained in:
Daniel Clark
2021-02-08 21:41:46 +00:00
parent 0b33b049b0
commit ec847fd6a5
2 changed files with 14 additions and 2 deletions
@@ -0,0 +1,12 @@
using Microsoft.Win32;
namespace NotificationFlyout.Wpf.UI.Extensions
{
public static class RegistryKeyExtensions
{
public static T GetValue<T>(this RegistryKey key, string valueName, T defaultValue = default)
{
return string.IsNullOrWhiteSpace(valueName) ? defaultValue : key.GetValue(valueName, defaultValue) is T value ? value : defaultValue;
}
}
}
@@ -37,8 +37,8 @@ namespace NotificationFlyout.Wpf.UI.Helpers
private SystemTheme GetSystemTheme()
{
var uiTheme = _settings.GetColorValue(UIColorType.Background).ToString();
return uiTheme == "#FFFFFFFF" ? SystemTheme.Light : SystemTheme.Dark;
var color = _settings.GetColorValue(UIColorType.Background).ToString();
return color == "#FFFFFFFF" ? SystemTheme.Light : SystemTheme.Dark;
}
private void OnColorValuesChanged(UISettings sender, object args)