1 write to _stylusDoubleTapDeltaTime
PresentationCore (1)
System\Windows\Input\Stylus\Common\StylusLogic.cs (1)
342
_stylusDoubleTapDeltaTime
= (obj == null) ? _stylusDoubleTapDeltaTime : (Int32)obj; // The default double tap timeout is 800ms
3 references to _stylusDoubleTapDeltaTime
PresentationCore (3)
System\Windows\Input\Stylus\Common\StylusLogic.cs (2)
316
internal int StylusDoubleTapDeltaTime { get { return
_stylusDoubleTapDeltaTime
; } }
342
_stylusDoubleTapDeltaTime = (obj == null) ?
_stylusDoubleTapDeltaTime
: (Int32)obj; // The default double tap timeout is 800ms
System\Windows\Input\Stylus\Wisp\WispLogic.cs (1)
2770
return isFingerTouch ? _touchDoubleTapDeltaTime :
_stylusDoubleTapDeltaTime
;