A Microsoft framework for building cross-platform mobile apps using .NET and C# with native performance and user interfaces.
Hello,
Welcome to our Microsoft Q&A platform!
This issue seems to be related to the caching of the listView, try setting CachingStrategy to RecycleElement or RecycleElementAndDataTemplate.
<ListView x:Name="Listview" ItemsSource="{Binding dataList}" RowHeight="200" CachingStrategy="RecycleElement">
<ListView.ItemTemplate>
<DataTemplate>
...
</DataTemplate>
</ListView.ItemTemplate>
</ListView>
Best Regards,
Jarvan 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.