Bubbling scroll events from a ListView to its parent
Posted
by emddudley
on Stack Overflow
See other posts from Stack Overflow
or by emddudley
Published on 2009-10-18T17:16:01Z
Indexed on
2010/05/06
17:48 UTC
Read the original article
Hit count: 411
In my WPF application I have a ListView whose ScrollViewer.VerticalScrollBarVisibility is set to Disabled. It is contained within a ScrollViewer. When I attempt to use the mouse wheel over the ListView, the outer ScrollViewer does not scroll because the ListView is capturing the scroll events.
How can I force the ListView to allow the scroll events to bubble up to the ScrollViewer?
© Stack Overflow or respective owner