37 references to Timestamp
PresentationCore (36)
System\Windows\Input\KeyboardDevice.cs (3)
860KeyEventArgs keyDown = new KeyEventArgs(this, previewKeyDown.UnsafeInputSource, previewKeyDown.Timestamp, key); 915KeyEventArgs keyUp = new KeyEventArgs(this, previewKeyUp.UnsafeInputSource, previewKeyUp.Timestamp, key); 997ChangeFocus(null, e.StagingItem.Input.Timestamp);
System\Windows\Input\MouseDevice.cs (12)
1272ChangeMouseOver(null, e.StagingItem.Input.Timestamp); 1351MouseButtonEventArgs clickThrough = new MouseButtonEventArgs(this, mouseButtonEventArgs.Timestamp, mouseButtonEventArgs.ChangedButton, GetStylusDevice(e.StagingItem)); 1367MouseButtonEventArgs clickThrough = new MouseButtonEventArgs(this, mouseButtonEventArgs.Timestamp, mouseButtonEventArgs.ChangedButton, GetStylusDevice(e.StagingItem)); 1478ChangeMouseCapture(null, null, CaptureMode.None, e.StagingItem.Input.Timestamp); 1484ChangeMouseCapture(null, null, CaptureMode.None, e.StagingItem.Input.Timestamp); 1708ChangeMouseOver(mouseOver, e.StagingItem.Input.Timestamp); 1812_clickCount = CalculateClickCount(mouseButtonArgs.ChangedButton, mouseButtonArgs.Timestamp, stylusDevice, ptClient); 1818_lastClickTime = mouseButtonArgs.Timestamp; 1845MouseWheelEventArgs wheel = new MouseWheelEventArgs(this, previewWheel.Timestamp, previewWheel.Delta); 1864MouseButtonEventArgs down = new MouseButtonEventArgs(this, previewDown.Timestamp, previewDown.ChangedButton, GetStylusDevice(e.StagingItem)); 1877MouseButtonEventArgs up = new MouseButtonEventArgs(this, previewUp.Timestamp, previewUp.ChangedButton, GetStylusDevice(e.StagingItem)); 1889MouseEventArgs move = new MouseEventArgs(this, previewMove.Timestamp, GetStylusDevice(e.StagingItem));
System\Windows\Input\Stylus\Pointer\PointerLogic.cs (6)
1054eventArgsMain = new StylusDownEventArgs(stylusDevice, eventArgsPreview.Timestamp); 1060eventArgsMain = new StylusButtonEventArgs(stylusDevice, eventArgsPreview.Timestamp, buttonEventArgsPreview.StylusButton); 1064eventArgsMain = new StylusEventArgs(stylusDevice, eventArgsPreview.Timestamp); 1070previewSystemGesture.Timestamp, 1292int elapsedTime = Math.Abs(unchecked(stylusDownEventArgs.Timestamp - _lastTapTimeTicks)); 1313_lastTapTimeTicks = stylusDownEventArgs.Timestamp;
System\Windows\Input\Stylus\Pointer\PointerStylusPlugInManager.cs (1)
582timestamp = mouseEventArgs.Timestamp;
System\Windows\Input\Stylus\Wisp\WispLogic.cs (11)
1090int timeSpan = Math.Abs(unchecked(stylusDownEventArgs.Timestamp - stylusDevice.LastTapTime)); 1110stylusDevice.LastTapTime = stylusDownEventArgs.Timestamp; 1134ProcessMouseMove(stylusDevice, stylusDownEventArgs.Timestamp, true); 1284eventArgsOutOfRange.Timestamp, // updated time 1293eventArgsOutOfRange.Timestamp, // updated time 1421eventArgsMain = new StylusDownEventArgs(stylusDevice, eventArgsPreview.Timestamp); 1427eventArgsMain = new StylusButtonEventArgs(stylusDevice, eventArgsPreview.Timestamp, buttonEventArgsPreview.StylusButton); 1431eventArgsMain = new StylusEventArgs(stylusDevice, eventArgsPreview.Timestamp); 1437previewSystemGesture.Timestamp, 1766InputMode.Foreground, stylusArgs.Timestamp, mouseInputSource, 1883timestamp = mouseEventArgs.Timestamp;
System\Windows\Input\Stylus\Wisp\WispStylusDevice.cs (3)
1799PlayBackCachedDownInputReport(systemGestureArgs.Timestamp); 1804PlayBackCachedDownInputReport(systemGestureArgs.Timestamp); 1820PlayBackCachedDownInputReport(stylusArgs.Timestamp);
PresentationFramework (1)
System\Windows\Controls\Control.cs (1)
570MouseButtonEventArgs doubleClick = new MouseButtonEventArgs(e.MouseDevice, e.Timestamp, e.ChangedButton, e.StylusDevice);