3
votes
2answers
128 views

ScrollViewer mouse wheel not working

I am currently working on my first WPF project and trying to make a listview scrollable. At first I thought this could be easily done by simply limiting the listview's width and height and thus ...
1
vote
2answers
465 views

Child elements of scrollviewer preventing scrolling with mouse wheel?

I'm having a problem getting mouse wheel scrolling to work in the following XAML, which I have simplified for clarity: <ScrollViewer HorizontalScrollBarVisibility="Visible" ...
0
votes
0answers
192 views

ScrollViewer MouseWheel not working w/Trackpad, does with USB Mouse & in Simulator

So I've been fighting Mouse Wheel scrolling in a ScrollViewer all day... Turns out my trackpad on my laptop wasn't simulating Mouse Wheel events. Doesn't make any sense, considering it works on other ...
0
votes
1answer
278 views

Child interfering with mouse wheel event propagation

I have a fairly complex front end on an WPF App and to make things simpler as they are reused heavily, I've broken it into Uaer controls <ScrollViewer> <TreeVeiw> ...
7
votes
2answers
1k views

How can I make WPF ScrollViewer middle-click-scroll?

Clicking the middle mouse button (aka: mouse wheel) and then moving the mouse down slightly lets users scroll in IE, and most Windows apps. This behavior appears to be missing in WPF controls by ...
0
votes
1answer
447 views

Is it possible to adjust mouse wheel scroll distance on a WPF ScrollViewer?

I find it is scrolling too much at a time when the mouse scroll wheel is used. I have a very short ScrollViewer (one line tall) that contains a few lines of items in a WrapPanel, and it is scrolling ...
2
votes
1answer
2k views

WPF: Help with Scrollviewer MouseWheel Behavior

For some reason my scrollviewer does not process the mousewheel events (or at least scroll when you mouse wheel) when the mouse is over any child. I want it so that either when the mouse wheel is ...
0
votes
1answer
659 views

Lock the scrolling in a ScrollViewer?

How can I lock vertical scrolling of a ScrollViewer by using the mouse wheel ?
5
votes
1answer
8k views

Mouse wheel not working when over ScrollViewer's child controls

I was kind of expecting my ScrollViewer's child controls to hand the MouseWheel events back up the the ScrollViewer automatically, and that's not the case. I have a ScrollViewer with a ListBox in it. ...