Skip to content
Merged
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
3e029ad
Update email-validation-behavior.md
TheCodeTraveler Aug 17, 2022
2de4938
Merge branch 'main' into main
jfversluis Aug 18, 2022
5d81215
Merge branch 'MicrosoftDocs:main' into main
TheCodeTraveler Nov 5, 2022
e297b9d
Merge branch 'MicrosoftDocs:main' into main
TheCodeTraveler Dec 13, 2022
c815aa3
Merge branch 'MicrosoftDocs:main' into main
TheCodeTraveler Feb 3, 2023
1711f50
Merge branch 'MicrosoftDocs:main' into main
TheCodeTraveler Feb 28, 2023
4098bca
Merge branch 'MicrosoftDocs:main' into main
TheCodeTraveler May 18, 2023
b2bc038
Merge branch 'MicrosoftDocs:main' into main
TheCodeTraveler Jun 8, 2023
8c07de1
Merge branch 'MicrosoftDocs:main' into main
TheCodeTraveler Sep 7, 2023
4818067
Merge branch 'MicrosoftDocs:main' into main
TheCodeTraveler Oct 1, 2023
906c21d
Add .NET Hot Reload Docs
TheCodeTraveler Oct 1, 2023
d3dcdd6
Merge branch 'MicrosoftDocs:main' into main
TheCodeTraveler Nov 8, 2023
9f91e11
Merge branch 'MicrosoftDocs:main' into main
TheCodeTraveler Dec 1, 2023
09ddb7e
Merge branch 'MicrosoftDocs:main' into main
TheCodeTraveler Sep 6, 2024
e5c66f6
Merge branch 'MicrosoftDocs:main' into main
TheCodeTraveler Oct 14, 2024
f724228
Merge branch 'MicrosoftDocs:main' into main
TheCodeTraveler Oct 17, 2024
ac4acab
Merge branch 'MicrosoftDocs:main' into main
TheCodeTraveler Nov 22, 2024
aec3234
Merge branch 'MicrosoftDocs:main' into main
TheCodeTraveler Dec 18, 2024
a60b02f
Merge branch 'MicrosoftDocs:main' into main
TheCodeTraveler May 25, 2025
0a45ad8
Merge branch 'MicrosoftDocs:main' into main
TheCodeTraveler Jun 14, 2025
0f03806
Merge branch 'MicrosoftDocs:main' into main
TheCodeTraveler Jul 3, 2025
a2291bc
Merge branch 'MicrosoftDocs:main' into main
TheCodeTraveler Jul 8, 2025
06e6e8c
Merge branch 'MicrosoftDocs:main' into main
TheCodeTraveler Oct 13, 2025
92dbe1d
Update Popup.md
TheCodeTraveler Oct 23, 2025
df6cb0e
Merge branch 'main' into WasPreviousPageAToolkitPopup
jfversluis Nov 4, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions docs/maui/views/Popup.md
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,20 @@ It is important to note that a `Popup` will be displayed inside `ContentPage` wh
| Show popup | Current `Page` will receive `OnDisappearing` and `OnNavigatingFrom` |
| Close popup | Previous `Page` will receive `OnAppearing` and `OnNavigatedTo` |

To determine if `OnNavigatedTo(NavigatedToEventArgs)` was called by dismissing `Popup`, you can use the `WasPreviousPageAToolkitPopup()` extension method:

```cs
protected override async void OnNavigatedTo(NavigatedToEventArgs args)
{
base.OnNavigatedTo(args);

if (args.WasPreviousPageACommunityToolkitPopupPage())
{
// If true, `OnNavigatedTo` was called by dismissing a Popup
}
}
```

## PopupOptions

The `PageOverlayColor`, `Shape`, `Shadow` can all be customized for Popup. See [PopupOptions](./popup/popup-options.md) for more details.
Expand Down