You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
OnWheel and OnMouseWheel are defined to have MouseEventArgs, but I believe they should have the type WheelEventArgs.
WheelEventArgs inherits from MouseEventArgs, but includes the additional properties DeltaMode, DeltaX, DeltaY and DeltaZ that describe the scroll distance.
Currently it is possible to work around this by downcasting the OnWheel events to WheelEventArgs.
The text was updated successfully, but these errors were encountered:
In these two locations:
https://github.com/search?q=repo%3Afsbolero%2FBolero%20OnWheel&type=code
OnWheel and OnMouseWheel are defined to have MouseEventArgs, but I believe they should have the type WheelEventArgs.
WheelEventArgs inherits from MouseEventArgs, but includes the additional properties DeltaMode, DeltaX, DeltaY and DeltaZ that describe the scroll distance.
Currently it is possible to work around this by downcasting the OnWheel events to WheelEventArgs.
The text was updated successfully, but these errors were encountered: