I had the same problem and I found this post to find out if there is an answer. I finally found a solution to the problem. I wrote my own ControlTemplate for the ListView control, and I did not add the following trigger:
<Trigger Property="IsGrouping" Value="true"> <Setter Property="ScrollViewer.CanContentScroll" Value="false"/> </Trigger>
So, if you set the ScrolLViewer.CanContentScroll property to false, it will work like a charm. Seems counter-intuitive, but it worked for me. If you post more code, we may be able to help you.
source share