3 instantiations of StylusButtonEventArgs
PresentationCore (3)
System\Windows\Input\Stylus\Pointer\PointerLogic.cs (1)
1045eventArgsMain = new StylusButtonEventArgs(stylusDevice, eventArgsPreview.Timestamp, buttonEventArgsPreview.StylusButton);
System\Windows\Input\Stylus\Wisp\WispLogic.cs (2)
1429eventArgsMain = new StylusButtonEventArgs(stylusDevice, eventArgsPreview.Timestamp, buttonEventArgsPreview.StylusButton); 2914StylusButtonEventArgs args = new StylusButtonEventArgs(stylusDevice, report.Timestamp, button)
22 references to StylusButtonEventArgs
PresentationCore (22)
System\Windows\Generated\ContentElement.cs (4)
1563protected internal virtual void OnStylusButtonDown(StylusButtonEventArgs e) {} 1582protected internal virtual void OnStylusButtonUp(StylusButtonEventArgs e) {} 1601protected internal virtual void OnPreviewStylusButtonDown(StylusButtonEventArgs e) {} 1620protected internal virtual void OnPreviewStylusButtonUp(StylusButtonEventArgs e) {}
System\Windows\Generated\UIElement.cs (8)
1813private static void OnStylusButtonDownThunk(object sender, StylusButtonEventArgs e) 1838private static void OnStylusButtonUpThunk(object sender, StylusButtonEventArgs e) 1863private static void OnPreviewStylusButtonDownThunk(object sender, StylusButtonEventArgs e) 1888private static void OnPreviewStylusButtonUpThunk(object sender, StylusButtonEventArgs e) 3516protected virtual void OnStylusButtonDown(StylusButtonEventArgs e) {} 3535protected virtual void OnStylusButtonUp(StylusButtonEventArgs e) {} 3554protected virtual void OnPreviewStylusButtonDown(StylusButtonEventArgs e) {} 3573protected virtual void OnPreviewStylusButtonUp(StylusButtonEventArgs e) {}
System\Windows\Generated\UIElement3D.cs (4)
1288protected internal virtual void OnStylusButtonDown(StylusButtonEventArgs e) {} 1307protected internal virtual void OnStylusButtonUp(StylusButtonEventArgs e) {} 1326protected internal virtual void OnPreviewStylusButtonDown(StylusButtonEventArgs e) {} 1345protected internal virtual void OnPreviewStylusButtonUp(StylusButtonEventArgs e) {}
System\Windows\Input\Stylus\Common\StylusButtonEventHandler.cs (1)
11public delegate void StylusButtonEventHandler(object sender, StylusButtonEventArgs e);
System\Windows\Input\Stylus\Pointer\PointerLogic.cs (2)
1044StylusButtonEventArgs buttonEventArgsPreview = (StylusButtonEventArgs)eventArgsPreview;
System\Windows\Input\Stylus\Wisp\WispLogic.cs (3)
1428StylusButtonEventArgs buttonEventArgsPreview = (StylusButtonEventArgs)eventArgsPreview; 2914StylusButtonEventArgs args = new StylusButtonEventArgs(stylusDevice, report.Timestamp, button)