2 writes to _lastMouseScreenLocation
PresentationCore (2)
System\Windows\Input\Stylus\Wisp\WispStylusDevice.cs (2)
1439
_lastMouseScreenLocation
= _lastScreenLocation;
1846
set {
_lastMouseScreenLocation
= value; }
6 references to _lastMouseScreenLocation
PresentationCore (6)
System\Windows\Input\Stylus\Wisp\WispStylusDevice.cs (6)
1269
return
_lastMouseScreenLocation
;
1472
if ((Math.Abs(
_lastMouseScreenLocation
.X - dragPosition.X) > delta.Width) ||
1473
(Math.Abs(
_lastMouseScreenLocation
.Y - dragPosition.Y) > delta.Height))
1538
ptScreen =
_lastMouseScreenLocation
;
1666
Point pt = PointUtil.ScreenToClient(
_lastMouseScreenLocation
, mouseInputSource);
1845
get { return
_lastMouseScreenLocation
; }