3 writes to _stylusDevicesInRange
PresentationCore (3)
System\Windows\Input\Stylus\Wisp\PenContext.cs (3)
330_stylusDevicesInRange = new List<int>(); // create it as needed. 359_stylusDevicesInRange = null; // not needed anymore. 379_stylusDevicesInRange = null; // nothing in range now.
11 references to _stylusDevicesInRange
PresentationCore (11)
System\Windows\Input\Stylus\Wisp\PenContext.cs (11)
233return _stylusDevicesInRange != null && _stylusDevicesInRange.Count > 0; 235return (_stylusDevicesInRange != null && _stylusDevicesInRange.Contains(stylusPointerId)); 328if (_stylusDevicesInRange == null) 332_stylusDevicesInRange.Add(stylusPointerId); 355_stylusDevicesInRange.Remove(stylusPointerId); 357if (_stylusDevicesInRange.Count == 0) 363else if (_stylusDevicesInRange != null) 375for(int i=0; i < _stylusDevicesInRange.Count; i++) 377_contexts.OnPenOutOfRange(this, _tabletDeviceId, _stylusDevicesInRange[i], timestamp);