1
我剛開始在UWP上開發應用程序。我有一個問題,我有一個ListView DataTemplate是一個用戶控件UWP ListView項目模板重用以前的項目模板
<ListView ItemsSource="{Binding Data, Mode=OneWay}" SelectionMode="None" IsItemClickEnabled="False"
ItemContainerStyle="{StaticResource ListViewItemCustomStyle}">
<ListView.ItemTemplate>
<DataTemplate>
<items:FeedItem DataContext="{Binding}" Margin="0,0,0,8"/>
</DataTemplate>
</ListView.ItemTemplate>
</ListView>
然後我將數據源設置爲ListView。
這些項目呈現良好,但在幾個項目之後,他們以某種方式開始使用以前的項目模板。我無法理解。有沒有人遇到過這個問題,並知道如何解決它?非常感謝。
你是什麼意思「以前的項目模板」? – GeertvdC
@GeertvdC示例:ListView中有很多項目嗎?在滾動大約10個項目之後,儘管該項目的內容(數據上下文)完全不同,但第11個項目具有與第一個項目完全相同的模板。 –