Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 7th, 2012  |  syntax: None  |  size: 0.43 KB  |  hits: 15  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. Navigation control (using functions)
  2. private void butArtists_Click(object sender, RoutedEventArgs e)
  3.     {          
  4.         PhoneApplicationFrame frame = Application.Current.RootVisual as PhoneApplicationFrame;
  5.         MainPage mp = frame.Content as MainPage;
  6.         mp.PlayerMenu("Artists");
  7.     }
  8.        
  9. var uriFragment = @"views/ArtistsView.xaml";
  10. (App.Current.RootVisual as Frame).Navigate(new Uri(uriFragment, UriKind.Relative));