| 11 | namespace WebView2_UWP.Pages |
| 12 | { |
| 13 | public class BasePage : Page |
| 14 | { |
| 15 | public BasePage() |
| 16 | { |
| 17 | Unloaded += BasePage_Unloaded; |
| 18 | } |
| 19 | |
| 20 | private void BasePage_Unloaded(object sender, RoutedEventArgs e) |
| 21 | { |
| 22 | // The garbage collector can be slow to dispose of the |
| 23 | // webviews. Manually free the resources being used by |
| 24 | // the webviews since they are no longer needed after |
| 25 | // the page has been unloaded. |
| 26 | CloseAllWebViews(this); |
| 27 | } |
| 28 | |
| 29 | private void CloseAllWebViews(DependencyObject root) |
| 30 | { |
| 31 | for (int i = 0; i < VisualTreeHelper.GetChildrenCount(root); i++) |
| 32 | { |
| 33 | var childVisual = VisualTreeHelper.GetChild(root, i); |
| 34 | CloseAllWebViews(childVisual); |
| 35 | |
| 36 | if (childVisual is WebView2 webView) |
| 37 | { |
| 38 | webView.Close(); |
| 39 | } |
| 40 | } |
| 41 | } |
| 42 | } |
| 43 | } |
nothing calls this directly
no outgoing calls
no test coverage detected