namespace Terminal.Gui;
///
/// EventArgs for events where the state of the of a is changing (e.g.
/// / events).
///
public class SuperViewChangedEventArgs : EventArgs
{
/// Creates a new instance of the class.
///
///
public SuperViewChangedEventArgs (View superView, View subView)
{
SuperView = superView;
SubView = subView;
}
/// The SubView that is either being added or removed from .
public View SubView { get; }
///
/// The SuperView that is changing state. For this is the SuperView is being removed from. For
/// it is the SuperView is being added to.
///
public View SuperView { get; }
}