14 references to MouseWheelEvent
PresentationCore (13)
System\Windows\Generated\ContentElement.cs (3)
1105public static readonly RoutedEvent MouseWheelEvent = Mouse.MouseWheelEvent.AddOwner(_typeofThis); 1112add { AddHandler(Mouse.MouseWheelEvent, value, false); } 1113remove { RemoveHandler(Mouse.MouseWheelEvent, value); }
System\Windows\Generated\UIElement.cs (4)
755EventManager.RegisterClassHandler(type, Mouse.MouseWheelEvent, new MouseWheelEventHandler(UIElement.OnMouseWheelThunk), false); 3058public static readonly RoutedEvent MouseWheelEvent = Mouse.MouseWheelEvent.AddOwner(_typeofThis); 3065add { AddHandler(Mouse.MouseWheelEvent, value, false); } 3066remove { RemoveHandler(Mouse.MouseWheelEvent, value); }
System\Windows\Generated\UIElement3D.cs (3)
826public static readonly RoutedEvent MouseWheelEvent = Mouse.MouseWheelEvent.AddOwner(_typeofThis); 833add { AddHandler(Mouse.MouseWheelEvent, value, false); } 834remove { RemoveHandler(Mouse.MouseWheelEvent, value); }
System\Windows\Input\Mouse.cs (2)
262UIElement.AddHandler(element, MouseWheelEvent, handler); 272UIElement.RemoveHandler(element, MouseWheelEvent, handler);
System\Windows\Input\MouseDevice.cs (1)
1823wheel.RoutedEvent=Mouse.MouseWheelEvent;
PresentationFramework (1)
System\Windows\Controls\ComboBox.cs (1)
62EventManager.RegisterClassHandler(typeof(ComboBox), Mouse.MouseWheelEvent, new MouseWheelEventHandler(OnMouseWheel), true); // call us even if textbox in the style gets the click.