Split sample project up

This commit is contained in:
Daniel Clark
2021-02-09 17:11:24 +00:00
parent d8581f33e7
commit aa16180509
71 changed files with 460 additions and 274 deletions
@@ -0,0 +1,18 @@
using System;
namespace NotificationFlyout.Wpf.UI.Helpers
{
public class SystemPersonalisationChangedEventArgs : EventArgs
{
internal SystemPersonalisationChangedEventArgs(SystemTheme theme, bool isColorPrevalence)
{
Theme = theme;
IsColorPrevalence = isColorPrevalence;
}
public SystemTheme Theme { get; private set; }
public bool IsColorPrevalence { get; private set; }
}
}