Tray icon now respects current system theme

This commit is contained in:
Daniel Clark
2021-02-07 16:24:20 +00:00
parent fbf7713705
commit 72941706d9
17 changed files with 213 additions and 93 deletions
@@ -0,0 +1,14 @@
using System;
namespace NotificationFlyout.Wpf.UI.Helpers
{
public class ThemeChangedEventArgs : EventArgs
{
internal ThemeChangedEventArgs(SystemTheme theme)
{
Theme = theme;
}
public SystemTheme Theme { get; private set; }
}
}