namespace Terminal.Gui; /// /// Args for events where the of a is changed (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 view that is having it's changed public View SubView { get; } /// /// The parent. For this is the old parent (new parent now being null). For /// it is the new parent to whom view now belongs. /// public View SuperView { get; } }