14 references to MouseWheelEvent
PresentationCore (13)
System\Windows\Generated\ContentElement.cs (3)
1107public static readonly RoutedEvent MouseWheelEvent = Mouse.MouseWheelEvent.AddOwner(_typeofThis); 1114add { AddHandler(Mouse.MouseWheelEvent, value, false); } 1115remove { RemoveHandler(Mouse.MouseWheelEvent, value); }
System\Windows\Generated\UIElement.cs (4)
757EventManager.RegisterClassHandler(type, Mouse.MouseWheelEvent, new MouseWheelEventHandler(UIElement.OnMouseWheelThunk), false); 3060public static readonly RoutedEvent MouseWheelEvent = Mouse.MouseWheelEvent.AddOwner(_typeofThis); 3067add { AddHandler(Mouse.MouseWheelEvent, value, false); } 3068remove { RemoveHandler(Mouse.MouseWheelEvent, value); }
System\Windows\Generated\UIElement3D.cs (3)
828public static readonly RoutedEvent MouseWheelEvent = Mouse.MouseWheelEvent.AddOwner(_typeofThis); 835add { AddHandler(Mouse.MouseWheelEvent, value, false); } 836remove { 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)
1846wheel.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.