How to fix the issue "UWP app stopped after navigation"?

72 Views Asked by At

Now I'm making an UWP app.

And I faced an issue.

When I tried to navigate to other page using this.Frame.Navigate, the app stopped with exit code -1.

Here is my code

private void Meetups_Pressed(object sender, PointerRoutedEventArgs e)
{
    this.Frame.Navigate(typeof(MeetUps));
}

And MeetUps.xaml and MeetUps.xaml.cs are exist.

How can I solve this issue?

0

There are 0 best solutions below