5 writes to _doubleTapSize
PresentationCore (5)
System\Windows\Input\Stylus\Pointer\PointerTabletDevice.cs (2)
134
_doubleTapSize
= new Size((int)Math.Round((ScreenSize.Width * DoubleTapDelta) / dwXValue),
145
_doubleTapSize
= mouseDoubleTapDefault;
System\Windows\Input\Stylus\Wisp\WispTabletDevice.cs (3)
223
_doubleTapSize
= Size.Empty;
293
_doubleTapSize
= new Size((int)Math.Round((ScreenSize.Width * stylusLogic.DoubleTapDelta) / dwXValue),
304
_doubleTapSize
= mouseDoubleTapDefault;
11 references to _doubleTapSize
PresentationCore (11)
System\Windows\Input\Stylus\Pointer\PointerTabletDevice.cs (5)
139
_doubleTapSize
.Width = Math.Max(mouseDoubleTapDefault.Width,
_doubleTapSize
.Width);
140
_doubleTapSize
.Height = Math.Max(mouseDoubleTapDefault.Height,
_doubleTapSize
.Height);
162
return
_doubleTapSize
;
System\Windows\Input\Stylus\Wisp\WispTabletDevice.cs (6)
236
return
_doubleTapSize
; // used for double tap detection - updating click count.
261
return !(
_doubleTapSize
.IsEmpty || _cancelSize.IsEmpty);
298
_doubleTapSize
.Width = Math.Max(mouseDoubleTapDefault.Width,
_doubleTapSize
.Width);
299
_doubleTapSize
.Height = Math.Max(mouseDoubleTapDefault.Height,
_doubleTapSize
.Height);