PopupImpl.cs 378 B

12345678910111213141516
  1. // Copyright (c) The Avalonia Project. All rights reserved.
  2. // Licensed under the MIT license. See licence.md file in the project root for full license information.
  3. using Gtk;
  4. using Avalonia.Platform;
  5. namespace Avalonia.Gtk
  6. {
  7. public class PopupImpl : WindowImpl, IPopupImpl
  8. {
  9. public PopupImpl()
  10. : base(WindowType.Popup)
  11. {
  12. }
  13. }
  14. }