37 references to Timestamp
PresentationCore (36)
System\Windows\Input\KeyboardDevice.cs (3)
817KeyEventArgs keyDown = new KeyEventArgs(this, previewKeyDown.UnsafeInputSource, previewKeyDown.Timestamp, key); 872KeyEventArgs keyUp = new KeyEventArgs(this, previewKeyUp.UnsafeInputSource, previewKeyUp.Timestamp, key); 954ChangeFocus(null, e.StagingItem.Input.Timestamp);
System\Windows\Input\MouseDevice.cs (12)
1240ChangeMouseOver(null, e.StagingItem.Input.Timestamp); 1319MouseButtonEventArgs clickThrough = new MouseButtonEventArgs(this, mouseButtonEventArgs.Timestamp, mouseButtonEventArgs.ChangedButton, GetStylusDevice(e.StagingItem)); 1335MouseButtonEventArgs clickThrough = new MouseButtonEventArgs(this, mouseButtonEventArgs.Timestamp, mouseButtonEventArgs.ChangedButton, GetStylusDevice(e.StagingItem)); 1446ChangeMouseCapture(null, null, CaptureMode.None, e.StagingItem.Input.Timestamp); 1452ChangeMouseCapture(null, null, CaptureMode.None, e.StagingItem.Input.Timestamp); 1676ChangeMouseOver(mouseOver, e.StagingItem.Input.Timestamp); 1780_clickCount = CalculateClickCount(mouseButtonArgs.ChangedButton, mouseButtonArgs.Timestamp, stylusDevice, ptClient); 1786_lastClickTime = mouseButtonArgs.Timestamp; 1813MouseWheelEventArgs wheel = new MouseWheelEventArgs(this, previewWheel.Timestamp, previewWheel.Delta); 1832MouseButtonEventArgs down = new MouseButtonEventArgs(this, previewDown.Timestamp, previewDown.ChangedButton, GetStylusDevice(e.StagingItem)); 1845MouseButtonEventArgs up = new MouseButtonEventArgs(this, previewUp.Timestamp, previewUp.ChangedButton, GetStylusDevice(e.StagingItem)); 1857MouseEventArgs move = new MouseEventArgs(this, previewMove.Timestamp, GetStylusDevice(e.StagingItem));
System\Windows\Input\Stylus\Pointer\PointerLogic.cs (6)
1037eventArgsMain = new StylusDownEventArgs(stylusDevice, eventArgsPreview.Timestamp); 1043eventArgsMain = new StylusButtonEventArgs(stylusDevice, eventArgsPreview.Timestamp, buttonEventArgsPreview.StylusButton); 1047eventArgsMain = new StylusEventArgs(stylusDevice, eventArgsPreview.Timestamp); 1053previewSystemGesture.Timestamp, 1275int elapsedTime = Math.Abs(unchecked(stylusDownEventArgs.Timestamp - _lastTapTimeTicks)); 1296_lastTapTimeTicks = stylusDownEventArgs.Timestamp;
System\Windows\Input\Stylus\Pointer\PointerStylusPlugInManager.cs (1)
570timestamp = mouseEventArgs.Timestamp;
System\Windows\Input\Stylus\Wisp\WispLogic.cs (11)
1081int timeSpan = Math.Abs(unchecked(stylusDownEventArgs.Timestamp - stylusDevice.LastTapTime)); 1101stylusDevice.LastTapTime = stylusDownEventArgs.Timestamp; 1125ProcessMouseMove(stylusDevice, stylusDownEventArgs.Timestamp, true); 1275eventArgsOutOfRange.Timestamp, // updated time 1284eventArgsOutOfRange.Timestamp, // updated time 1412eventArgsMain = new StylusDownEventArgs(stylusDevice, eventArgsPreview.Timestamp); 1418eventArgsMain = new StylusButtonEventArgs(stylusDevice, eventArgsPreview.Timestamp, buttonEventArgsPreview.StylusButton); 1422eventArgsMain = new StylusEventArgs(stylusDevice, eventArgsPreview.Timestamp); 1428previewSystemGesture.Timestamp, 1757InputMode.Foreground, stylusArgs.Timestamp, mouseInputSource, 1874timestamp = mouseEventArgs.Timestamp;
System\Windows\Input\Stylus\Wisp\WispStylusDevice.cs (3)
1765PlayBackCachedDownInputReport(systemGestureArgs.Timestamp); 1770PlayBackCachedDownInputReport(systemGestureArgs.Timestamp); 1786PlayBackCachedDownInputReport(stylusArgs.Timestamp);
PresentationFramework (1)
System\Windows\Controls\Control.cs (1)
561MouseButtonEventArgs doubleClick = new MouseButtonEventArgs(e.MouseDevice, e.Timestamp, e.ChangedButton, e.StylusDevice);