AzureMobileServicesLab.WP8.MainPage.CompletedQuestionsList_Tap C# (CSharp) Method

CompletedQuestionsList_Tap() private method

private CompletedQuestionsList_Tap ( object sender, Microsoft.Phone.Controls.GestureEventArgs e ) : void
sender object
e Microsoft.Phone.Controls.GestureEventArgs
return void
        private void CompletedQuestionsList_Tap(object sender, GestureEventArgs e)
        {
            var selectedQuestion = CompletedQuestionsList.SelectedItem as Question;
            if (selectedQuestion != null)
            {
                App.RootFrame.Navigate(new Uri("/View/QuestionResultPage.xaml?" + selectedQuestion.Id, UriKind.Relative));
            }
        }
    }