1 write to _lastTapPoint
PresentationCore (1)
System\Windows\Input\Stylus\Pointer\PointerLogic.cs (1)
1297_lastTapPoint = ptPixels;
2 references to _lastTapPoint
PresentationCore (2)
System\Windows\Input\Stylus\Pointer\PointerLogic.cs (2)
1283bool isSameSpot = (Math.Abs(ptPixels.X - _lastTapPoint.X) < doubleTapSize.Width) && 1284(Math.Abs(ptPixels.Y - _lastTapPoint.Y) < doubleTapSize.Height);