cannot reproduce with the following code snippet. @Sunil A M, could you please show a minimal, reproducible sample without private information?
<ScrollViewer Width="500" Height="400">
<StackPanel>
<ListView SelectionChanged="ListView_SelectionChanged" Width="250">
<ListView.ItemTemplate>
<DataTemplate>
<Grid>
<Border Background="LightGray" Height="200" Width="200">
<TextBlock Text="{Binding}"
FontSize="48" Foreground="Green"/>
</Border>
</Grid>
</DataTemplate>
</ListView.ItemTemplate>
<ListView.Items>
<x:String>One</x:String>
<x:String>One1</x:String>
<ListViewItem>Two</ListViewItem>
<ListViewItem>Two2</ListViewItem>
<ListViewItem>Three</ListViewItem>
</ListView.Items>
</ListView>
<TextBlock> AAA </TextBlock>
<ListView SelectionChanged="ListView_SelectionChanged" Width="250">
<ListView.ItemTemplate>
<DataTemplate>
<Grid>
<Border Background="LightGray" Height="200" Width="200">
<TextBlock Text="{Binding}"
FontSize="48" Foreground="Green"/>
</Border>
</Grid>
</DataTemplate>
</ListView.ItemTemplate>
<ListView.Items>
<x:String>One</x:String>
<x:String>One1</x:String>
<ListViewItem>Two</ListViewItem>
<ListViewItem>Two2</ListViewItem>
<ListViewItem>Three</ListViewItem>
</ListView.Items>
</ListView>
</StackPanel>
</ScrollViewer>