Home
last modified time | relevance | path

Searched refs:rootFrame (Results 1 – 6 of 6) sorted by relevance

/external/opencv3/samples/winrt_universal/PhoneTutorial/
DApp.xaml.cpp53 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…
[all …]
/external/opencv3/samples/winrt_universal/VideoCaptureXAML/video_capture_xaml/video_capture_xaml.Shared/
DApp.xaml.cpp79 auto rootFrame = dynamic_cast<Frame^>(Window::Current->Content); variable
83 if (rootFrame == nullptr)
87 rootFrame = ref new Frame();
90 rootFrame->CacheSize = 1;
99 Window::Current->Content = rootFrame;
102 if (rootFrame->Content == nullptr)
106 if (rootFrame->ContentTransitions != nullptr)
109 for (auto transition : rootFrame->ContentTransitions)
115 rootFrame->ContentTransitions = nullptr;
116 …_firstNavigatedToken = rootFrame->Navigated += ref new NavigatedEventHandler(this, &App::RootFrame…
[all …]
/external/opencv3/samples/winrt/FaceDetection/FaceDetection/
DApp.xaml.cpp54 auto rootFrame = dynamic_cast<Frame^>(Window::Current->Content); variable
58 if (rootFrame == nullptr)
62 rootFrame = ref new Frame();
65 rootFrame->Language = Windows::Globalization::ApplicationLanguages::Languages->GetAt(0);
67rootFrame->NavigationFailed += ref new Windows::UI::Xaml::Navigation::NavigationFailedEventHandler…
76 if (rootFrame->Content == nullptr)
81 rootFrame->Navigate(TypeName(MainPage::typeid), e->Arguments);
84 Window::Current->Content = rootFrame;
90 if (rootFrame->Content == nullptr)
95 rootFrame->Navigate(TypeName(MainPage::typeid), e->Arguments);
/external/opencv3/samples/winrt/OcvImageProcessing/OcvImageProcessing/
DApp.xaml.cpp45 auto rootFrame = dynamic_cast<Frame^>(Window::Current->Content); variable
49 if (rootFrame == nullptr)
53 rootFrame = ref new Frame();
62 if (rootFrame->Content == nullptr)
67 if (!rootFrame->Navigate(TypeName(MainPage::typeid), args->Arguments))
73 Window::Current->Content = rootFrame;
79 if (rootFrame->Content == nullptr)
84 if (!rootFrame->Navigate(TypeName(MainPage::typeid), args->Arguments))
/external/opencv3/samples/winrt/ImageManipulations/
DApp.xaml.cpp71 auto rootFrame = ref new Frame(); variable
72 SuspensionManager::RegisterFrame(rootFrame, "AppFrame");
86 if (rootFrame->Content == nullptr) in __anonf61f0df20202()
88 if (!rootFrame->Navigate(TypeName(MainPage::typeid))) in __anonf61f0df20202()
95 Window::Current->Content = rootFrame; in __anonf61f0df20202()
DApp.xaml.h33 Windows::UI::Xaml::Controls::Frame^ rootFrame;