Files
ShrlAlgoToolkit/WPFluent/Appearance/ThemeChangedEvent.cs

17 lines
686 B
C#
Raw Normal View History


namespace WPFluent.Appearance;
/// <summary>
/// Event triggered when application theme is updated.
/// </summary>
/// <param name="currentApplicationTheme">Current application <see cref="ApplicationTheme"/>.</param>
/// <param name="systemAccent">Current base system accent <see cref="Color"/>.</param>
/// <summary>
/// Event triggered when application theme is updated.
/// </summary>
/// <param name="currentApplicationTheme">Current application <see cref="ApplicationTheme"/>.</param>
/// <param name="systemAccent">Current base system accent <see cref="Color"/>.</param>
public delegate void ThemeChangedEvent(ApplicationTheme currentApplicationTheme, Color systemAccent);