You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: maui/src/Popup/SfPopup/SfPopup.cs
+5-1Lines changed: 5 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -3155,7 +3155,11 @@ void SetParent()
3155
3155
{
3156
3156
_popupOverlayContainer.Parent=page;
3157
3157
3158
-
// Due to framework change in 9.0.50, popupView visibility was becoming false while setting parent. Framework PR URL(https://github.com/dotnet/maui/pull/20154).
3158
+
// The issue occurs due to framework changes in version 9.0.50 [https://github.com/dotnet/maui/pull/20154].
3159
+
// We will set _popupOverlayContainer visibility to false after dismissing the popup.
3160
+
// We will set _popupOverlayContainer as the parent to popupView on display.
3161
+
// Due to the framework changes, the IsVisible property of _popupView is set to false when reopening with the same instance of the popup, since _popupOverlayContainer visibility will now be false.
3162
+
// We will set the visibility of _popupOverlayContainer to true in a later section and _popupViewvisibility will still remains false.
0 commit comments