14 references to MouseWheelEvent
PresentationCore (13)
Core\CSharp\System\Windows\Generated\ContentElement.cs (3)
1165public static readonly RoutedEvent MouseWheelEvent = Mouse.MouseWheelEvent.AddOwner(_typeofThis); 1172add { AddHandler(Mouse.MouseWheelEvent, value, false); } 1173remove { RemoveHandler(Mouse.MouseWheelEvent, value); }
Core\CSharp\System\Windows\Generated\UIElement.cs (4)
820EventManager.RegisterClassHandler(type, Mouse.MouseWheelEvent, new MouseWheelEventHandler(UIElement.OnMouseWheelThunk), false); 3443public static readonly RoutedEvent MouseWheelEvent = Mouse.MouseWheelEvent.AddOwner(_typeofThis); 3450add { AddHandler(Mouse.MouseWheelEvent, value, false); } 3451remove { RemoveHandler(Mouse.MouseWheelEvent, value); }
Core\CSharp\System\Windows\Generated\UIElement3D.cs (3)
871public static readonly RoutedEvent MouseWheelEvent = Mouse.MouseWheelEvent.AddOwner(_typeofThis); 878add { AddHandler(Mouse.MouseWheelEvent, value, false); } 879remove { RemoveHandler(Mouse.MouseWheelEvent, value); }
Core\CSharp\System\Windows\Input\Mouse.cs (2)
259UIElement.AddHandler(element, MouseWheelEvent, handler); 269UIElement.RemoveHandler(element, MouseWheelEvent, handler);
Core\CSharp\System\Windows\Input\MouseDevice.cs (1)
1930wheel.RoutedEvent=Mouse.MouseWheelEvent;
PresentationFramework (1)
src\Framework\System\Windows\Controls\ComboBox.cs (1)
63EventManager.RegisterClassHandler(typeof(ComboBox), Mouse.MouseWheelEvent, new MouseWheelEventHandler(OnMouseWheel), true); // call us even if textbox in the style gets the click.