Navigation in windows phone7
问题 What kind of navigation is best suited for a home button in an application,Can any please help me,I am newbie? 回答1: Updated Answer based on your comments, First you need to create a button(preferably an Appbar button) and then place this code in the click event handler NavigationService.Navigate(new Uri("/Home.xaml?home=true", UriKind.Relative)); And then in the Home page in the onNavigatedTo event handler place this code string home; NavigationContext.QueryString.TryGetValue("home", out home