37 references to Timestamp
PresentationCore (36)
System\Windows\Input\KeyboardDevice.cs (3)
822KeyEventArgs keyDown = new KeyEventArgs(this, previewKeyDown.UnsafeInputSource, previewKeyDown.Timestamp, key); 877KeyEventArgs keyUp = new KeyEventArgs(this, previewKeyUp.UnsafeInputSource, previewKeyUp.Timestamp, key); 959ChangeFocus(null, e.StagingItem.Input.Timestamp);
System\Windows\Input\MouseDevice.cs (12)
1244ChangeMouseOver(null, e.StagingItem.Input.Timestamp); 1327MouseButtonEventArgs clickThrough = new MouseButtonEventArgs(this, mouseButtonEventArgs.Timestamp, mouseButtonEventArgs.ChangedButton, GetStylusDevice(e.StagingItem)) 1345MouseButtonEventArgs clickThrough = new MouseButtonEventArgs(this, mouseButtonEventArgs.Timestamp, mouseButtonEventArgs.ChangedButton, GetStylusDevice(e.StagingItem)) 1457ChangeMouseCapture(null, null, CaptureMode.None, e.StagingItem.Input.Timestamp); 1463ChangeMouseCapture(null, null, CaptureMode.None, e.StagingItem.Input.Timestamp); 1687ChangeMouseOver(mouseOver, e.StagingItem.Input.Timestamp); 1791_clickCount = CalculateClickCount(mouseButtonArgs.ChangedButton, mouseButtonArgs.Timestamp, stylusDevice, ptClient); 1797_lastClickTime = mouseButtonArgs.Timestamp; 1824MouseWheelEventArgs wheel = new MouseWheelEventArgs(this, previewWheel.Timestamp, previewWheel.Delta) 1845MouseButtonEventArgs down = new MouseButtonEventArgs(this, previewDown.Timestamp, previewDown.ChangedButton, GetStylusDevice(e.StagingItem)) 1860MouseButtonEventArgs up = new MouseButtonEventArgs(this, previewUp.Timestamp, previewUp.ChangedButton, GetStylusDevice(e.StagingItem)) 1874MouseEventArgs move = new MouseEventArgs(this, previewMove.Timestamp, GetStylusDevice(e.StagingItem))
System\Windows\Input\Stylus\Pointer\PointerLogic.cs (6)
1038eventArgsMain = new StylusDownEventArgs(stylusDevice, eventArgsPreview.Timestamp); 1044eventArgsMain = new StylusButtonEventArgs(stylusDevice, eventArgsPreview.Timestamp, buttonEventArgsPreview.StylusButton); 1048eventArgsMain = new StylusEventArgs(stylusDevice, eventArgsPreview.Timestamp); 1054previewSystemGesture.Timestamp, 1276int elapsedTime = Math.Abs(unchecked(stylusDownEventArgs.Timestamp - _lastTapTimeTicks)); 1297_lastTapTimeTicks = stylusDownEventArgs.Timestamp;
System\Windows\Input\Stylus\Pointer\PointerStylusPlugInManager.cs (1)
569timestamp = mouseEventArgs.Timestamp;
System\Windows\Input\Stylus\Wisp\WispLogic.cs (11)
1089int timeSpan = Math.Abs(unchecked(stylusDownEventArgs.Timestamp - stylusDevice.LastTapTime)); 1109stylusDevice.LastTapTime = stylusDownEventArgs.Timestamp; 1133ProcessMouseMove(stylusDevice, stylusDownEventArgs.Timestamp, true); 1283eventArgsOutOfRange.Timestamp, // updated time 1292eventArgsOutOfRange.Timestamp, // updated time 1422eventArgsMain = new StylusDownEventArgs(stylusDevice, eventArgsPreview.Timestamp); 1428eventArgsMain = new StylusButtonEventArgs(stylusDevice, eventArgsPreview.Timestamp, buttonEventArgsPreview.StylusButton); 1432eventArgsMain = new StylusEventArgs(stylusDevice, eventArgsPreview.Timestamp); 1438previewSystemGesture.Timestamp, 1767InputMode.Foreground, stylusArgs.Timestamp, mouseInputSource, 1886timestamp = mouseEventArgs.Timestamp;
System\Windows\Input\Stylus\Wisp\WispStylusDevice.cs (3)
1769PlayBackCachedDownInputReport(systemGestureArgs.Timestamp); 1774PlayBackCachedDownInputReport(systemGestureArgs.Timestamp); 1790PlayBackCachedDownInputReport(stylusArgs.Timestamp);
PresentationFramework (1)
System\Windows\Controls\Control.cs (1)
560MouseButtonEventArgs doubleClick = new MouseButtonEventArgs(e.MouseDevice, e.Timestamp, e.ChangedButton, e.StylusDevice);