14 references to MouseWheelEvent
PresentationCore (13)
System\Windows\Generated\ContentElement.cs (3)
1093public static readonly RoutedEvent MouseWheelEvent = Mouse.MouseWheelEvent.AddOwner(_typeofThis); 1100add { AddHandler(Mouse.MouseWheelEvent, value, false); } 1101remove { RemoveHandler(Mouse.MouseWheelEvent, value); }
System\Windows\Generated\UIElement.cs (4)
743EventManager.RegisterClassHandler(type, Mouse.MouseWheelEvent, new MouseWheelEventHandler(UIElement.OnMouseWheelThunk), false); 3046public static readonly RoutedEvent MouseWheelEvent = Mouse.MouseWheelEvent.AddOwner(_typeofThis); 3053add { AddHandler(Mouse.MouseWheelEvent, value, false); } 3054remove { RemoveHandler(Mouse.MouseWheelEvent, value); }
System\Windows\Generated\UIElement3D.cs (3)
818public static readonly RoutedEvent MouseWheelEvent = Mouse.MouseWheelEvent.AddOwner(_typeofThis); 825add { AddHandler(Mouse.MouseWheelEvent, value, false); } 826remove { RemoveHandler(Mouse.MouseWheelEvent, value); }
System\Windows\Input\Mouse.cs (2)
254UIElement.AddHandler(element, MouseWheelEvent, handler); 264UIElement.RemoveHandler(element, MouseWheelEvent, handler);
System\Windows\Input\MouseDevice.cs (1)
1830RoutedEvent = Mouse.MouseWheelEvent
PresentationFramework (1)
System\Windows\Controls\ComboBox.cs (1)
52EventManager.RegisterClassHandler(typeof(ComboBox), Mouse.MouseWheelEvent, new MouseWheelEventHandler(OnMouseWheel), true); // call us even if textbox in the style gets the click.