Application.Popover.cs 362 B

12345678910111213
  1. #nullable enable
  2. namespace Terminal.Gui.App;
  3. public static partial class Application // Popover handling
  4. {
  5. /// <summary>Gets the Application <see cref="Popover"/> manager.</summary>
  6. public static ApplicationPopover? Popover
  7. {
  8. get => ApplicationImpl.Instance.Popover;
  9. internal set => ApplicationImpl.Instance.Popover = value;
  10. }
  11. }