namespace Terminal.Gui.ViewBase; /// /// Args for events where the of a is changed (e.g. /// ). /// public class SuperViewChangedEventArgs : EventArgs { /// Creates a new instance of the class. /// /// public SuperViewChangedEventArgs (View superView, View subView) { SuperView = superView; SubView = subView; } /// The view that is having it's changed public View SubView { get; } /// /// The parent. For this is the old parent (new parent now being null). /// public View SuperView { get; } }