简体   繁体   中英

Unable to navigate the page in FrayxRulez/SwipeListView control in windows phone 8.1

I am working with windows phone 8.1 c# application . I want swpe to delete control so I have used FrayxRulez/SwipeListView it working fine but when i used SwipeListView_ItemClick event it doesn't navidate 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();
}

It caused crashed . Please help me out for that .

I've just tried and it works with a new XAML BlankPage. So your crashed is caused by something in your TestPage. Check exceptions in Debug mode when you navigate in TestPage, or use some breakpoints.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM