mirror of
https://github.com/gui-cs/Terminal.Gui.git
synced 2025-12-29 17:28:01 +01:00
23 lines
467 B
C#
23 lines
467 B
C#
using System;
|
|
|
|
#nullable enable
|
|
|
|
namespace Terminal.Gui {
|
|
/// <summary>
|
|
/// Event arguments for the <see cref="Thickness"/> 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;
|
|
}
|
|
} |