3 instantiations of StylusButtonEventArgs
PresentationCore (3)
System\Windows\Input\Stylus\Pointer\PointerLogic.cs (1)
1044eventArgsMain = new StylusButtonEventArgs(stylusDevice, eventArgsPreview.Timestamp, buttonEventArgsPreview.StylusButton);
System\Windows\Input\Stylus\Wisp\WispLogic.cs (2)
1428eventArgsMain = new StylusButtonEventArgs(stylusDevice, eventArgsPreview.Timestamp, buttonEventArgsPreview.StylusButton); 2913StylusButtonEventArgs args = new StylusButtonEventArgs(stylusDevice, report.Timestamp, button)
22 references to StylusButtonEventArgs
PresentationCore (22)
System\Windows\Generated\ContentElement.cs (4)
1559protected internal virtual void OnStylusButtonDown(StylusButtonEventArgs e) {} 1578protected internal virtual void OnStylusButtonUp(StylusButtonEventArgs e) {} 1597protected internal virtual void OnPreviewStylusButtonDown(StylusButtonEventArgs e) {} 1616protected internal virtual void OnPreviewStylusButtonUp(StylusButtonEventArgs e) {}
System\Windows\Generated\UIElement.cs (8)
1809private static void OnStylusButtonDownThunk(object sender, StylusButtonEventArgs e) 1834private static void OnStylusButtonUpThunk(object sender, StylusButtonEventArgs e) 1859private static void OnPreviewStylusButtonDownThunk(object sender, StylusButtonEventArgs e) 1884private static void OnPreviewStylusButtonUpThunk(object sender, StylusButtonEventArgs e) 3512protected virtual void OnStylusButtonDown(StylusButtonEventArgs e) {} 3531protected virtual void OnStylusButtonUp(StylusButtonEventArgs e) {} 3550protected virtual void OnPreviewStylusButtonDown(StylusButtonEventArgs e) {} 3569protected virtual void OnPreviewStylusButtonUp(StylusButtonEventArgs e) {}
System\Windows\Generated\UIElement3D.cs (4)
1289protected internal virtual void OnStylusButtonDown(StylusButtonEventArgs e) {} 1308protected internal virtual void OnStylusButtonUp(StylusButtonEventArgs e) {} 1327protected internal virtual void OnPreviewStylusButtonDown(StylusButtonEventArgs e) {} 1346protected internal virtual void OnPreviewStylusButtonUp(StylusButtonEventArgs e) {}
System\Windows\Input\Stylus\Common\StylusButtonEventHandler.cs (1)
10public delegate void StylusButtonEventHandler(object sender, StylusButtonEventArgs e);
System\Windows\Input\Stylus\Pointer\PointerLogic.cs (2)
1043StylusButtonEventArgs buttonEventArgsPreview = (StylusButtonEventArgs)eventArgsPreview;
System\Windows\Input\Stylus\Wisp\WispLogic.cs (3)
1427StylusButtonEventArgs buttonEventArgsPreview = (StylusButtonEventArgs)eventArgsPreview; 2913StylusButtonEventArgs args = new StylusButtonEventArgs(stylusDevice, report.Timestamp, button)