On remote desktop, the following code causes the list items to appear grey for a few seconds while scrolling.
<ListView Margin="10" ItemsSource="{Binding Items}" ></ListView>
But for this code, scrolling works fine
<ScrollViewer VerticalScrollMode="Enabled" VerticalScrollBarVisibility="Visible" >
<ItemsControl ItemsSource="{Binding Items}" > </ItemsControl>
</ScrollViewer>
In both cases, the Items are a collection of strings. This issue does not happen when its on local machine.
I tried to configure windows remote desktop group policy setting, but didn't have any effects. What changes need to be done to make scrolling smooth in remote desktop?