Skip to content

Instantly share code, notes, and snippets.

@anuith
Created June 24, 2012 19:46
Show Gist options
  • Save anuith/2984654 to your computer and use it in GitHub Desktop.
Save anuith/2984654 to your computer and use it in GitHub Desktop.
Windows Phone Hackathon : Facebook & Instagram Sample - Main Page Code
private void FacebookButton_Click(object sender, System.Windows.RoutedEventArgs e)
{
NavigationService.Navigate(new Uri("/FacebookSample.xaml", UriKind.Relative));
}
private void InstagramButton_Click(object sender, System.Windows.RoutedEventArgs e)
{
NavigationService.Navigate(new Uri("/InstagramSample.xaml", UriKind.Relative));
}
private void ShareTaskButton_Click(object sender, System.Windows.RoutedEventArgs e)
{
NavigationService.Navigate(new Uri("/ShareTaskSample.xaml", UriKind.Relative));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment