I am a new programmer for windows phone and I finally tried creating multi-paged apps. I am trying to move between the main page to a blank page. I use the following code:
private void Submit_Click(object sender, RoutedEventArgs e) { this.Frame.Navigate(typeof(BlankPage1)); } the app crashes and I get the following error: The program has exited with code -1073741189 I looked online but using a dispatcher doesn't help either. I'm clueless. How Can I fix this?