disable mouse wheel on itemscontrol in wpf
This can be accomplished via attached behaviors. So instead I came up with the following IgnoreMouseWheelBehavior. Technically it’s not ignoring the MouseWheel, but it is “forwarding” the event back up and out of the ListBox. Check it. /// <summary> /// Captures and eats MouseWheel events so that a nested ListBox does not /// prevent an … Read more