namespace Terminal.Gui;
/// Event arguments for the event.
public class LayoutEventArgs : EventArgs
{
/// Creates a new instance of the class.
/// The view that the event is about.
public LayoutEventArgs (Size oldContentSize) { OldContentSize = oldContentSize; }
/// The viewport of the before it was laid out.
public Size OldContentSize { get; set; }
}