14 references to MouseWheelEvent
PresentationCore (13)
System\Windows\Generated\ContentElement.cs (3)
1089public static readonly RoutedEvent MouseWheelEvent = Mouse.MouseWheelEvent.AddOwner(_typeofThis); 1096add { AddHandler(Mouse.MouseWheelEvent, value, false); } 1097remove { RemoveHandler(Mouse.MouseWheelEvent, value); }
System\Windows\Generated\UIElement.cs (4)
739EventManager.RegisterClassHandler(type, Mouse.MouseWheelEvent, new MouseWheelEventHandler(UIElement.OnMouseWheelThunk), false); 3042public static readonly RoutedEvent MouseWheelEvent = Mouse.MouseWheelEvent.AddOwner(_typeofThis); 3049add { AddHandler(Mouse.MouseWheelEvent, value, false); } 3050remove { RemoveHandler(Mouse.MouseWheelEvent, value); }
System\Windows\Generated\UIElement3D.cs (3)
819public static readonly RoutedEvent MouseWheelEvent = Mouse.MouseWheelEvent.AddOwner(_typeofThis); 826add { AddHandler(Mouse.MouseWheelEvent, value, false); } 827remove { RemoveHandler(Mouse.MouseWheelEvent, value); }
System\Windows\Input\Mouse.cs (2)
253UIElement.AddHandler(element, MouseWheelEvent, handler); 263UIElement.RemoveHandler(element, MouseWheelEvent, handler);
System\Windows\Input\MouseDevice.cs (1)
1826RoutedEvent = Mouse.MouseWheelEvent
PresentationFramework (1)
System\Windows\Controls\ComboBox.cs (1)
51EventManager.RegisterClassHandler(typeof(ComboBox), Mouse.MouseWheelEvent, new MouseWheelEventHandler(OnMouseWheel), true); // call us even if textbox in the style gets the click.