WP7 Tombstoning and Querystring
问题 I am running very basic xml reader and I pass some data to the details page by using: private void HaberlerListBox_SelectionChanged(object sender, SelectionChangedEventArgs e) { if (e.AddedItems.Count > 0) { NavigationService.Navigate(new Uri("/News.xaml", UriKind.Relative)); FrameworkElement root = Application.Current.RootVisual as FrameworkElement; root.DataContext = (HaberItem)e.AddedItems[0]; ((ListBox)sender).SelectedIndex = -1; } } For a week I am trying to read and understand how to