HelloWorld.GreetingPage.OnNavigatedTo C# (CSharp) Method

OnNavigatedTo() protected method

protected OnNavigatedTo ( System.Windows.Navigation.NavigationEventArgs e ) : void
e System.Windows.Navigation.NavigationEventArgs
return void
        protected override void OnNavigatedTo(NavigationEventArgs e)
        {
            helloMessage.Text = this.NavigationContext.QueryString["name"];
            base.OnNavigatedTo(e);
        }