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?