Browse Source
feat: expose Popup property in PopupFlyoutBase for external access. (#19106)
fixes/nsopenpanel-shortcut
Zhang Dian
8 months ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
1 additions and
1 deletions
-
src/Avalonia.Controls/Flyouts/PopupFlyoutBase.cs
|
|
|
@ -79,7 +79,7 @@ namespace Avalonia.Controls.Primitives |
|
|
|
_popupLazy = new Lazy<Popup>(() => CreatePopup()); |
|
|
|
} |
|
|
|
|
|
|
|
protected Popup Popup => _popupLazy.Value; |
|
|
|
public Popup Popup => _popupLazy.Value; |
|
|
|
|
|
|
|
/// <inheritdoc cref="Popup.Placement"/>
|
|
|
|
public PlacementMode Placement |
|
|
|
|