2 instantiations of MouseWheelEventArgs
PresentationCore (2)
Core\CSharp\System\Windows\Input\MouseDevice.cs (2)
1929
MouseWheelEventArgs wheel = new
MouseWheelEventArgs
(this, previewWheel.Timestamp, previewWheel.Delta);
2020
MouseWheelEventArgs previewWheel = new
MouseWheelEventArgs
(this, rawMouseInputReport.Timestamp, rawMouseInputReport.Wheel);
22 references to MouseWheelEventArgs
PresentationCore (14)
Core\CSharp\System\Windows\Generated\ContentElement.cs (2)
1160
protected internal virtual void OnPreviewMouseWheel(
MouseWheelEventArgs
e) {}
1179
protected internal virtual void OnMouseWheel(
MouseWheelEventArgs
e) {}
Core\CSharp\System\Windows\Generated\UIElement.cs (4)
1320
private static void OnPreviewMouseWheelThunk(object sender,
MouseWheelEventArgs
e)
1349
private static void OnMouseWheelThunk(object sender,
MouseWheelEventArgs
e)
3438
protected virtual void OnPreviewMouseWheel(
MouseWheelEventArgs
e) {}
3457
protected virtual void OnMouseWheel(
MouseWheelEventArgs
e) {}
Core\CSharp\System\Windows\Generated\UIElement3D.cs (2)
866
protected internal virtual void OnPreviewMouseWheel(
MouseWheelEventArgs
e) {}
885
protected internal virtual void OnMouseWheel(
MouseWheelEventArgs
e) {}
Core\CSharp\System\Windows\Input\Command\MouseGesture.cs (1)
186
if(inputArgs is
MouseWheelEventArgs
)
Core\CSharp\System\Windows\Input\MouseDevice.cs (4)
1928
MouseWheelEventArgs
previewWheel = (
MouseWheelEventArgs
) e.StagingItem.Input;
1929
MouseWheelEventArgs
wheel = new MouseWheelEventArgs(this, previewWheel.Timestamp, previewWheel.Delta);
2020
MouseWheelEventArgs
previewWheel = new MouseWheelEventArgs(this, rawMouseInputReport.Timestamp, rawMouseInputReport.Wheel);
Core\CSharp\System\Windows\Input\MouseWheelEventHandler.cs (1)
8
public delegate void MouseWheelEventHandler(object sender,
MouseWheelEventArgs
e);
PresentationFramework (7)
src\Framework\System\Windows\Controls\ComboBox.cs (1)
1156
private static void OnMouseWheel(object sender,
MouseWheelEventArgs
e)
src\Framework\System\Windows\Controls\DocumentViewer.cs (1)
1294
protected override void OnPreviewMouseWheel(
MouseWheelEventArgs
e)
src\Framework\System\Windows\Controls\FlowDocumentScrollViewer.cs (1)
706
protected override void OnMouseWheel(
MouseWheelEventArgs
e)
src\Framework\System\Windows\Controls\Primitives\TextBoxBase.cs (1)
1070
protected override void OnMouseWheel(
MouseWheelEventArgs
e)
src\Framework\System\Windows\Controls\ScrollViewer.cs (1)
1137
protected override void OnMouseWheel(
MouseWheelEventArgs
e)
src\Framework\System\Windows\Controls\SinglePageViewer.cs (1)
427
protected override void OnMouseWheel(
MouseWheelEventArgs
e)
src\Framework\System\Windows\Documents\FixedPage.cs (1)
103
protected override void OnPreviewMouseWheel(
MouseWheelEventArgs
e)
System.Activities.Presentation (1)
System.Activities.Presentation\System\Activities\Presentation\View\DesignerView.xaml.cs (1)
725
protected override void OnPreviewMouseWheel(
MouseWheelEventArgs
e)