Skip to content

Instantly share code, notes, and snippets.

@anuith
Created June 24, 2012 20:08
Show Gist options
  • Save anuith/2984714 to your computer and use it in GitHub Desktop.
Save anuith/2984714 to your computer and use it in GitHub Desktop.
Windows Phone Hackathon : Facebook & Instagram Sample - Instagram Code - SelectionChanged
private void ListBox_Feed_SelectionChanged(object sender, System.Windows.Controls.SelectionChangedEventArgs e)
{
ListBox listbox = sender as ListBox;
App currentApp = App.Current as App;
currentApp.CurrentInstagramItem = listbox.SelectedItem as InstagramItem;
NavigationService.Navigate(
new Uri("/InstagramItemPage.xaml", UriKind.Relative));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment