ThicknessEventArgs.cs 478 B

1234567891011121314151617181920212223
  1. using System;
  2. #nullable enable
  3. namespace Terminal.Gui {
  4. /// <summary>
  5. /// Event arguments for the <see cref="ConfigurationManager"/> events.
  6. /// </summary>
  7. public class ThicknessEventArgs : EventArgs {
  8. /// <summary>
  9. /// Initializes a new instance of <see cref="ThicknessEventArgs"/>
  10. /// </summary>
  11. public ThicknessEventArgs ()
  12. {
  13. }
  14. /// <summary>
  15. /// The new Thickness.
  16. /// </summary>
  17. public Thickness Thickness { get; set; } = Thickness.Empty;
  18. }
  19. }