Beispiel #1
0
 public NavigationRootManager(IMauiContext mauiContext)
 {
     _mauiContext                       = mauiContext;
     _rootView                          = new WindowRootView();
     _rootView.BackRequested           += OnBackRequested;
     _rootView.OnApplyTemplateFinished += OnApplyTemplateFinished;
 }
Beispiel #2
0
 public NavigationRootManager(Window platformWindow)
 {
     _platformWindow                    = platformWindow;
     _rootView                          = new WindowRootView();
     _rootView.BackRequested           += OnBackRequested;
     _rootView.OnApplyTemplateFinished += OnApplyTemplateFinished;
     _rootView.OnAppTitleBarChanged    += OnAppTitleBarChanged;
 }