Unable to navigate page in FrayxRulez / SwipeListView on Windows Phone 8.1.

I am working with Windows phone 8.1 C # app. I want the swpe to remove the control, so I used FrayxRulez / SwipeListView , it works fine, but when I used SwipeListView_ItemClick event, it didn't move to another page.

private async void SwipeListView_ItemClick(object sender, ItemClickEventArgs e)
{
    var item = e.ClickedItem as EmailObject;
    Frame.Navigate(typeof(TestPage));
     // await new MessageDialog(item.Body, "Clicked Item").ShowAsync();
}

      

This caused a crash. Please help me for this.

+3


source to share


1 answer


I just tried it and it works with the new XAML BlankPage. So your failure is caused by something in your TestPage. Check for exceptions in debug mode while navigating TestPage or use some breakpoints.



0


source







All Articles