14 references to MouseWheelEvent
PresentationCore (13)
System\Windows\Generated\ContentElement.cs (3)
1101public static readonly RoutedEvent MouseWheelEvent = Mouse.MouseWheelEvent.AddOwner(_typeofThis); 1108add { AddHandler(Mouse.MouseWheelEvent, value, false); } 1109remove { RemoveHandler(Mouse.MouseWheelEvent, value); }
System\Windows\Generated\UIElement.cs (4)
751EventManager.RegisterClassHandler(type, Mouse.MouseWheelEvent, new MouseWheelEventHandler(UIElement.OnMouseWheelThunk), false); 3054public static readonly RoutedEvent MouseWheelEvent = Mouse.MouseWheelEvent.AddOwner(_typeofThis); 3061add { AddHandler(Mouse.MouseWheelEvent, value, false); } 3062remove { RemoveHandler(Mouse.MouseWheelEvent, value); }
System\Windows\Generated\UIElement3D.cs (3)
820public static readonly RoutedEvent MouseWheelEvent = Mouse.MouseWheelEvent.AddOwner(_typeofThis); 827add { AddHandler(Mouse.MouseWheelEvent, value, false); } 828remove { 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)
1814wheel.RoutedEvent=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.