2
0

ThicknessEventArgs.cs 535 B

12345678910111213141516
  1. #nullable enable
  2. namespace Terminal.Gui;
  3. /// <summary>Event arguments for the <see cref="Thickness"/> events.</summary>
  4. public class ThicknessEventArgs : EventArgs
  5. {
  6. /// <summary>Initializes a new instance of <see cref="ThicknessEventArgs"/></summary>
  7. public ThicknessEventArgs () { }
  8. /// <summary>The previous Thickness.</summary>
  9. public Thickness PreviousThickness { get; set; } = Thickness.Empty;
  10. /// <summary>The new Thickness.</summary>
  11. public Thickness Thickness { get; set; } = Thickness.Empty;
  12. }