vote up 0 vote down star

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?

flag

1 Answer

vote up 0 vote down

I had a similar problem not long ago, but I really cannot remember how I solved it.
Anyway you might create a custom decorator to wrap the listview, so that it can intercept the "preview" events and then use it instead the bubble-way.
Hope it helps.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.