Identify the correct code snippet
that can be used to pass the question variable to the SearchResults page during navigation.
1. Frame.Navigate(typeof(SearchResults), question);
2. Frame.Navigate(SearchResults, question);
3. Frame.Navigate(question, typeof(SearchResults));
4. Frame.Navigate(question, SearchResults);
Solution:
1. Frame.Navigate(typeof(SearchResults), question);
No comments:
Post a Comment