5 writes to _doubleTapSize
PresentationCore (5)
System\Windows\Input\Stylus\Pointer\PointerTabletDevice.cs (2)
133_doubleTapSize = new Size((int)Math.Round((ScreenSize.Width * DoubleTapDelta) / dwXValue), 144_doubleTapSize = mouseDoubleTapDefault;
System\Windows\Input\Stylus\Wisp\WispTabletDevice.cs (3)
222_doubleTapSize = Size.Empty; 292_doubleTapSize = new Size((int)Math.Round((ScreenSize.Width * stylusLogic.DoubleTapDelta) / dwXValue), 303_doubleTapSize = mouseDoubleTapDefault;
11 references to _doubleTapSize
PresentationCore (11)
System\Windows\Input\Stylus\Pointer\PointerTabletDevice.cs (5)
138_doubleTapSize.Width = Math.Max(mouseDoubleTapDefault.Width, _doubleTapSize.Width); 139_doubleTapSize.Height = Math.Max(mouseDoubleTapDefault.Height, _doubleTapSize.Height); 161return _doubleTapSize;
System\Windows\Input\Stylus\Wisp\WispTabletDevice.cs (6)
235return _doubleTapSize; // used for double tap detection - updating click count. 260return !(_doubleTapSize.IsEmpty || _cancelSize.IsEmpty); 297_doubleTapSize.Width = Math.Max(mouseDoubleTapDefault.Width, _doubleTapSize.Width); 298_doubleTapSize.Height = Math.Max(mouseDoubleTapDefault.Height, _doubleTapSize.Height);