Application.Popover.cs 417 B

12345678910111213
  1. namespace Terminal.Gui.App;
  2. public static partial class Application // Popover handling
  3. {
  4. /// <summary>Gets the Application <see cref="Popover"/> manager.</summary>
  5. [Obsolete ("The legacy static Application object is going away.")]
  6. public static ApplicationPopover? Popover
  7. {
  8. get => ApplicationImpl.Instance.Popover;
  9. internal set => ApplicationImpl.Instance.Popover = value;
  10. }
  11. }