Lines Matching refs:rootFrame
53 auto rootFrame = dynamic_cast<Frame^>(Window::Current->Content); variable
57 if (rootFrame == nullptr)
61 rootFrame = ref new Frame();
64 rootFrame->CacheSize = 1;
73 Window::Current->Content = rootFrame;
76 if (rootFrame->Content == nullptr)
79 if (rootFrame->ContentTransitions != nullptr)
82 for (auto transition : rootFrame->ContentTransitions)
88 rootFrame->ContentTransitions = nullptr;
89 …_firstNavigatedToken = rootFrame->Navigated += ref new NavigatedEventHandler(this, &App::RootFrame…
94 if (!rootFrame->Navigate(MainPage::typeid, e->Arguments))
109 auto rootFrame = safe_cast<Frame^>(sender); variable
122 rootFrame->ContentTransitions = newTransitions;
123 rootFrame->Navigated -= _firstNavigatedToken;