1234567891011121314151617181920212223 |
- using System;
- #nullable enable
- namespace Terminal.Gui {
- /// <summary>
- /// Event arguments for the <see cref="ConfigurationManager"/> events.
- /// </summary>
- public class ThicknessEventArgs : EventArgs {
- /// <summary>
- /// Initializes a new instance of <see cref="ThicknessEventArgs"/>
- /// </summary>
- public ThicknessEventArgs ()
- {
- }
- /// <summary>
- /// The new Thickness.
- /// </summary>
- public Thickness Thickness { get; set; } = Thickness.Empty;
- }
- }
|