Files
NotificationFlyout/src/NotificationFlyout.Wpf.UI/Helpers/ThemeChangedEventArgs.cs
T
2021-02-09 17:11:24 +00:00

19 lines
459 B
C#

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; }
}
}