4 instantiations of StylusDownEventArgs
PresentationCore (4)
System\Windows\Input\Stylus\Pointer\PointerLogic.cs (2)
997args = new StylusDownEventArgs(report.StylusDevice, report.Timestamp); 1039eventArgsMain = new StylusDownEventArgs(stylusDevice, eventArgsPreview.Timestamp);
System\Windows\Input\Stylus\Wisp\WispLogic.cs (2)
1383args = new StylusDownEventArgs(report.StylusDevice, report.Timestamp); 1423eventArgsMain = new StylusDownEventArgs(stylusDevice, eventArgsPreview.Timestamp);
17 references to StylusDownEventArgs
PresentationCore (15)
System\Windows\Generated\ContentElement.cs (2)
1218protected internal virtual void OnPreviewStylusDown(StylusDownEventArgs e) {} 1237protected internal virtual void OnStylusDown(StylusDownEventArgs e) {}
System\Windows\Generated\UIElement.cs (4)
1360private static void OnPreviewStylusDownThunk(object sender, StylusDownEventArgs e) 1385private static void OnStylusDownThunk(object sender, StylusDownEventArgs e) 3171protected virtual void OnPreviewStylusDown(StylusDownEventArgs e) {} 3190protected virtual void OnStylusDown(StylusDownEventArgs e) {}
System\Windows\Generated\UIElement3D.cs (2)
948protected internal virtual void OnPreviewStylusDown(StylusDownEventArgs e) {} 967protected 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)
1038StylusDownEventArgs downEventArgsPreview = (StylusDownEventArgs)eventArgsPreview; 1267StylusEventArgs stylusDownEventArgs = args.StagingItem.Input as StylusDownEventArgs;
System\Windows\Input\Stylus\Wisp\WispLogic.cs (3)
1058StylusEventArgs stylusDownEventArgs = e.StagingItem.Input as StylusDownEventArgs; 1422StylusDownEventArgs downEventArgsPreview = (StylusDownEventArgs)eventArgsPreview;
PresentationFramework (2)
System\Windows\Controls\InkCanvas.cs (1)
57new StylusDownEventHandler(_OnDeviceDown<StylusDownEventArgs>));
System\Windows\Controls\StickyNote.cs (1)
85EventManager.RegisterClassHandler(owner, Stylus.PreviewStylusDownEvent, new StylusDownEventHandler(_OnPreviewDeviceDown<StylusDownEventArgs>));