namespace Terminal.Gui;
/// Args for events that relate to specific
public class ViewEventArgs : EventArgs
{
/// Creates a new instance of the class.
/// The view that the event is about.
public ViewEventArgs (View view) { View = view; }
/// The view that the event is about.
///
/// Can be different from the sender of the for example if event describes the adding a
/// child then sender may be the parent while is the child being added.
///
public View View { get; }
}