4 instantiations of StylusDownEventArgs
PresentationCore (4)
System\Windows\Input\Stylus\Pointer\PointerLogic.cs (2)
1012args = new StylusDownEventArgs(report.StylusDevice, report.Timestamp); 1054eventArgsMain = new StylusDownEventArgs(stylusDevice, eventArgsPreview.Timestamp);
System\Windows\Input\Stylus\Wisp\WispLogic.cs (2)
1381args = new StylusDownEventArgs(report.StylusDevice, report.Timestamp); 1421eventArgsMain = new StylusDownEventArgs(stylusDevice, eventArgsPreview.Timestamp);
17 references to StylusDownEventArgs
PresentationCore (15)
System\Windows\Generated\ContentElement.cs (2)
1235protected internal virtual void OnPreviewStylusDown(StylusDownEventArgs e) {} 1254protected internal virtual void OnStylusDown(StylusDownEventArgs e) {}
System\Windows\Generated\UIElement.cs (4)
1377private static void OnPreviewStylusDownThunk(object sender, StylusDownEventArgs e) 1402private static void OnStylusDownThunk(object sender, StylusDownEventArgs e) 3188protected virtual void OnPreviewStylusDown(StylusDownEventArgs e) {} 3207protected virtual void OnStylusDown(StylusDownEventArgs e) {}
System\Windows\Generated\UIElement3D.cs (2)
956protected internal virtual void OnPreviewStylusDown(StylusDownEventArgs e) {} 975protected internal virtual void OnStylusDown(StylusDownEventArgs e) {}
System\Windows\Input\Stylus\Common\StylusDownEventHandler.cs (1)
11public delegate void StylusDownEventHandler(object sender, StylusDownEventArgs e);
System\Windows\Input\Stylus\Pointer\PointerLogic.cs (3)
1053StylusDownEventArgs downEventArgsPreview = (StylusDownEventArgs)eventArgsPreview; 1282StylusEventArgs stylusDownEventArgs = args.StagingItem.Input as StylusDownEventArgs;
System\Windows\Input\Stylus\Wisp\WispLogic.cs (3)
1058StylusEventArgs stylusDownEventArgs = e.StagingItem.Input as StylusDownEventArgs; 1420StylusDownEventArgs downEventArgsPreview = (StylusDownEventArgs)eventArgsPreview;
PresentationFramework (2)
System\Windows\Controls\InkCanvas.cs (1)
69new StylusDownEventHandler(_OnDeviceDown<StylusDownEventArgs>));
System\Windows\Controls\StickyNote.cs (1)
112EventManager.RegisterClassHandler(owner, Stylus.PreviewStylusDownEvent, new StylusDownEventHandler(_OnPreviewDeviceDown<StylusDownEventArgs>));