1234567891011121314 |
- #nullable enable
- namespace Terminal.Gui;
- public static partial class Application // Toplevel handling
- {
- // BUGBUG: Technically, this is not the full lst of TopLevels. There be dragons here, e.g. see how Toplevel.Id is used. What
- /// <summary>Holds the stack of TopLevel views.</summary>
- internal static Stack<Toplevel> TopLevels { get; } = new ();
- /// <summary>The <see cref="Toplevel"/> that is currently active.</summary>
- /// <value>The top.</value>
- public static Toplevel? Top { get; internal set; }
- }
|