ColorEventArgs.cs 391 B

1234567891011
  1. #nullable enable
  2. namespace Terminal.Gui;
  3. /// <summary>Event arguments for the <see cref="Color"/> events.</summary>
  4. public class ColorEventArgs : EventArgs<Color>
  5. {
  6. /// <summary>Initializes a new instance of <see cref="ColorEventArgs"/>
  7. /// <paramref name="newColor"/>The value that is being changed to.</summary>
  8. public ColorEventArgs (Color newColor) :base(newColor) { }
  9. }