37 references to Timestamp
PresentationCore (36)
System\Windows\Input\KeyboardDevice.cs (3)
826
KeyEventArgs keyDown = new KeyEventArgs(this, previewKeyDown.UnsafeInputSource, previewKeyDown.
Timestamp
, key);
881
KeyEventArgs keyUp = new KeyEventArgs(this, previewKeyUp.UnsafeInputSource, previewKeyUp.
Timestamp
, key);
963
ChangeFocus(null, e.StagingItem.Input.
Timestamp
);
System\Windows\Input\MouseDevice.cs (12)
1249
ChangeMouseOver(null, e.StagingItem.Input.
Timestamp
);
1328
MouseButtonEventArgs clickThrough = new MouseButtonEventArgs(this, mouseButtonEventArgs.
Timestamp
, mouseButtonEventArgs.ChangedButton, GetStylusDevice(e.StagingItem));
1344
MouseButtonEventArgs clickThrough = new MouseButtonEventArgs(this, mouseButtonEventArgs.
Timestamp
, mouseButtonEventArgs.ChangedButton, GetStylusDevice(e.StagingItem));
1455
ChangeMouseCapture(null, null, CaptureMode.None, e.StagingItem.Input.
Timestamp
);
1461
ChangeMouseCapture(null, null, CaptureMode.None, e.StagingItem.Input.
Timestamp
);
1685
ChangeMouseOver(mouseOver, e.StagingItem.Input.
Timestamp
);
1789
_clickCount = CalculateClickCount(mouseButtonArgs.ChangedButton, mouseButtonArgs.
Timestamp
, stylusDevice, ptClient);
1795
_lastClickTime = mouseButtonArgs.
Timestamp
;
1822
MouseWheelEventArgs wheel = new MouseWheelEventArgs(this, previewWheel.
Timestamp
, previewWheel.Delta);
1841
MouseButtonEventArgs down = new MouseButtonEventArgs(this, previewDown.
Timestamp
, previewDown.ChangedButton, GetStylusDevice(e.StagingItem));
1854
MouseButtonEventArgs up = new MouseButtonEventArgs(this, previewUp.
Timestamp
, previewUp.ChangedButton, GetStylusDevice(e.StagingItem));
1866
MouseEventArgs move = new MouseEventArgs(this, previewMove.
Timestamp
, GetStylusDevice(e.StagingItem));
System\Windows\Input\Stylus\Pointer\PointerLogic.cs (6)
1054
eventArgsMain = new StylusDownEventArgs(stylusDevice, eventArgsPreview.
Timestamp
);
1060
eventArgsMain = new StylusButtonEventArgs(stylusDevice, eventArgsPreview.
Timestamp
, buttonEventArgsPreview.StylusButton);
1064
eventArgsMain = new StylusEventArgs(stylusDevice, eventArgsPreview.
Timestamp
);
1070
previewSystemGesture.
Timestamp
,
1292
int elapsedTime = Math.Abs(unchecked(stylusDownEventArgs.
Timestamp
- _lastTapTimeTicks));
1313
_lastTapTimeTicks = stylusDownEventArgs.
Timestamp
;
System\Windows\Input\Stylus\Pointer\PointerStylusPlugInManager.cs (1)
582
timestamp = mouseEventArgs.
Timestamp
;
System\Windows\Input\Stylus\Wisp\WispLogic.cs (11)
1090
int timeSpan = Math.Abs(unchecked(stylusDownEventArgs.
Timestamp
- stylusDevice.LastTapTime));
1110
stylusDevice.LastTapTime = stylusDownEventArgs.
Timestamp
;
1134
ProcessMouseMove(stylusDevice, stylusDownEventArgs.
Timestamp
, true);
1284
eventArgsOutOfRange.
Timestamp
, // updated time
1293
eventArgsOutOfRange.
Timestamp
, // updated time
1421
eventArgsMain = new StylusDownEventArgs(stylusDevice, eventArgsPreview.
Timestamp
);
1427
eventArgsMain = new StylusButtonEventArgs(stylusDevice, eventArgsPreview.
Timestamp
, buttonEventArgsPreview.StylusButton);
1431
eventArgsMain = new StylusEventArgs(stylusDevice, eventArgsPreview.
Timestamp
);
1437
previewSystemGesture.
Timestamp
,
1766
InputMode.Foreground, stylusArgs.
Timestamp
, mouseInputSource,
1883
timestamp = mouseEventArgs.
Timestamp
;
System\Windows\Input\Stylus\Wisp\WispStylusDevice.cs (3)
1768
PlayBackCachedDownInputReport(systemGestureArgs.
Timestamp
);
1773
PlayBackCachedDownInputReport(systemGestureArgs.
Timestamp
);
1789
PlayBackCachedDownInputReport(stylusArgs.
Timestamp
);
PresentationFramework (1)
System\Windows\Controls\Control.cs (1)
570
MouseButtonEventArgs doubleClick = new MouseButtonEventArgs(e.MouseDevice, e.
Timestamp
, e.ChangedButton, e.StylusDevice);