mirror of
https://github.com/gui-cs/Terminal.Gui.git
synced 2025-12-28 08:47:59 +01:00
21 lines
766 B
C#
21 lines
766 B
C#
#nullable enable
|
|
|
|
namespace Terminal.Gui;
|
|
|
|
/// <summary>Event arguments for the <see cref="ConfigurationManager"/> events.</summary>
|
|
public class ConfigurationManagerEventArgs : EventArgs
|
|
{
|
|
/// <summary>Initializes a new instance of <see cref="ConfigurationManagerEventArgs"/></summary>
|
|
public ConfigurationManagerEventArgs () { }
|
|
}
|
|
|
|
/// <summary>Event arguments for the <see cref="ThemeManager"/> events.</summary>
|
|
public class ThemeManagerEventArgs : EventArgs
|
|
{
|
|
/// <summary>Initializes a new instance of <see cref="ThemeManagerEventArgs"/></summary>
|
|
public ThemeManagerEventArgs (string newTheme) { NewTheme = newTheme; }
|
|
|
|
/// <summary>The name of the new active theme.</summary>
|
|
public string NewTheme { get; set; } = string.Empty;
|
|
}
|