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