5 writes to _doubleTapSize
PresentationCore (5)
System\Windows\Input\Stylus\Pointer\PointerTabletDevice.cs (2)
138
_doubleTapSize
= new Size((int)Math.Round((ScreenSize.Width * DoubleTapDelta) / dwXValue),
149
_doubleTapSize
= mouseDoubleTapDefault;
System\Windows\Input\Stylus\Wisp\WispTabletDevice.cs (3)
232
_doubleTapSize
= Size.Empty;
302
_doubleTapSize
= new Size((int)Math.Round((ScreenSize.Width * stylusLogic.DoubleTapDelta) / dwXValue),
313
_doubleTapSize
= mouseDoubleTapDefault;
11 references to _doubleTapSize
PresentationCore (11)
System\Windows\Input\Stylus\Pointer\PointerTabletDevice.cs (5)
143
_doubleTapSize
.Width = Math.Max(mouseDoubleTapDefault.Width,
_doubleTapSize
.Width);
144
_doubleTapSize
.Height = Math.Max(mouseDoubleTapDefault.Height,
_doubleTapSize
.Height);
166
return
_doubleTapSize
;
System\Windows\Input\Stylus\Wisp\WispTabletDevice.cs (6)
245
return
_doubleTapSize
; // used for double tap detection - updating click count.
270
return !(
_doubleTapSize
.IsEmpty || _cancelSize.IsEmpty);
307
_doubleTapSize
.Width = Math.Max(mouseDoubleTapDefault.Width,
_doubleTapSize
.Width);
308
_doubleTapSize
.Height = Math.Max(mouseDoubleTapDefault.Height,
_doubleTapSize
.Height);