3 instantiations of StylusButtonEventArgs
PresentationCore (3)
System\Windows\Input\Stylus\Pointer\PointerLogic.cs (1)
1060eventArgsMain = new StylusButtonEventArgs(stylusDevice, eventArgsPreview.Timestamp, buttonEventArgsPreview.StylusButton);
System\Windows\Input\Stylus\Wisp\WispLogic.cs (2)
1427eventArgsMain = new StylusButtonEventArgs(stylusDevice, eventArgsPreview.Timestamp, buttonEventArgsPreview.StylusButton); 2902StylusButtonEventArgs args = new StylusButtonEventArgs(stylusDevice, report.Timestamp, button);
22 references to StylusButtonEventArgs
PresentationCore (22)
System\Windows\Generated\ContentElement.cs (4)
1577protected internal virtual void OnStylusButtonDown(StylusButtonEventArgs e) {} 1596protected internal virtual void OnStylusButtonUp(StylusButtonEventArgs e) {} 1615protected internal virtual void OnPreviewStylusButtonDown(StylusButtonEventArgs e) {} 1634protected internal virtual void OnPreviewStylusButtonUp(StylusButtonEventArgs e) {}
System\Windows\Generated\UIElement.cs (8)
1827private static void OnStylusButtonDownThunk(object sender, StylusButtonEventArgs e) 1852private static void OnStylusButtonUpThunk(object sender, StylusButtonEventArgs e) 1877private static void OnPreviewStylusButtonDownThunk(object sender, StylusButtonEventArgs e) 1902private static void OnPreviewStylusButtonUpThunk(object sender, StylusButtonEventArgs e) 3530protected virtual void OnStylusButtonDown(StylusButtonEventArgs e) {} 3549protected virtual void OnStylusButtonUp(StylusButtonEventArgs e) {} 3568protected virtual void OnPreviewStylusButtonDown(StylusButtonEventArgs e) {} 3587protected virtual void OnPreviewStylusButtonUp(StylusButtonEventArgs e) {}
System\Windows\Generated\UIElement3D.cs (4)
1298protected internal virtual void OnStylusButtonDown(StylusButtonEventArgs e) {} 1317protected internal virtual void OnStylusButtonUp(StylusButtonEventArgs e) {} 1336protected internal virtual void OnPreviewStylusButtonDown(StylusButtonEventArgs e) {} 1355protected 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)
1059StylusButtonEventArgs buttonEventArgsPreview = (StylusButtonEventArgs)eventArgsPreview;
System\Windows\Input\Stylus\Wisp\WispLogic.cs (3)
1426StylusButtonEventArgs buttonEventArgsPreview = (StylusButtonEventArgs)eventArgsPreview; 2902StylusButtonEventArgs args = new StylusButtonEventArgs(stylusDevice, report.Timestamp, button);