14 references to MouseWheelEvent
PresentationCore (13)
Core\CSharp\System\Windows\Generated\ContentElement.cs (3)
1165
public static readonly RoutedEvent MouseWheelEvent = Mouse.
MouseWheelEvent
.AddOwner(_typeofThis);
1172
add { AddHandler(Mouse.
MouseWheelEvent
, value, false); }
1173
remove { RemoveHandler(Mouse.
MouseWheelEvent
, value); }
Core\CSharp\System\Windows\Generated\UIElement.cs (4)
820
EventManager.RegisterClassHandler(type, Mouse.
MouseWheelEvent
, new MouseWheelEventHandler(UIElement.OnMouseWheelThunk), false);
3443
public static readonly RoutedEvent MouseWheelEvent = Mouse.
MouseWheelEvent
.AddOwner(_typeofThis);
3450
add { AddHandler(Mouse.
MouseWheelEvent
, value, false); }
3451
remove { RemoveHandler(Mouse.
MouseWheelEvent
, value); }
Core\CSharp\System\Windows\Generated\UIElement3D.cs (3)
871
public static readonly RoutedEvent MouseWheelEvent = Mouse.
MouseWheelEvent
.AddOwner(_typeofThis);
878
add { AddHandler(Mouse.
MouseWheelEvent
, value, false); }
879
remove { RemoveHandler(Mouse.
MouseWheelEvent
, value); }
Core\CSharp\System\Windows\Input\Mouse.cs (2)
259
UIElement.AddHandler(element,
MouseWheelEvent
, handler);
269
UIElement.RemoveHandler(element,
MouseWheelEvent
, handler);
Core\CSharp\System\Windows\Input\MouseDevice.cs (1)
1930
wheel.RoutedEvent=Mouse.
MouseWheelEvent
;
PresentationFramework (1)
src\Framework\System\Windows\Controls\ComboBox.cs (1)
63
EventManager.RegisterClassHandler(typeof(ComboBox), Mouse.
MouseWheelEvent
, new MouseWheelEventHandler(OnMouseWheel), true); // call us even if textbox in the style gets the click.