Application.Popover.cs 346 B

123456789101112
  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. public static ApplicationPopover? Popover
  6. {
  7. get => ApplicationImpl.Instance.Popover;
  8. internal set => ApplicationImpl.Instance.Popover = value;
  9. }
  10. }