BlinkIDDemo.MainPage.OnNavigatedTo C# (CSharp) Method

OnNavigatedTo() protected method

Called when this page is navigated to. Starts the recognition process.
protected OnNavigatedTo ( System.Windows.Navigation.NavigationEventArgs e ) : void
e System.Windows.Navigation.NavigationEventArgs
return void
        protected override void OnNavigatedTo(NavigationEventArgs e)
        {
            // call default behaviour
            base.OnNavigatedTo(e);
            // initialize the recognition process
            mRecognizer.InitializeControl(this.Orientation);
        }