5,381 questions
Hello,
Welcome to our Microsoft Q&A platform!
You can disabled the listview when you navigate between pages, after that, you can enable your listview.
private async void ListView_ItemTapped(object sender, ItemTappedEventArgs e)
{
ListView listView=sender as ListView;
listView.IsEnabled = false;
await Navigation.PushAsync(new Page1());
listView.IsEnabled = true;
}
Best Regards,
Jessie Zhang
---
If the response is helpful, please click "Accept Answer" and upvote it.
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.