3 writes to _stylusDevicesInRange
PresentationCore (3)
System\Windows\Input\Stylus\Wisp\PenContext.cs (3)
344_stylusDevicesInRange = new List<int>(); // create it as needed. 373_stylusDevicesInRange = null; // not needed anymore. 393_stylusDevicesInRange = null; // nothing in range now.
11 references to _stylusDevicesInRange
PresentationCore (11)
System\Windows\Input\Stylus\Wisp\PenContext.cs (11)
247return _stylusDevicesInRange != null && _stylusDevicesInRange.Count > 0; 249return (_stylusDevicesInRange != null && _stylusDevicesInRange.Contains(stylusPointerId)); 342if (_stylusDevicesInRange == null) 346_stylusDevicesInRange.Add(stylusPointerId); 369_stylusDevicesInRange.Remove(stylusPointerId); 371if (_stylusDevicesInRange.Count == 0) 377else if (_stylusDevicesInRange != null) 389for(int i=0; i < _stylusDevicesInRange.Count; i++) 391_contexts.OnPenOutOfRange(this, _tabletDeviceId, _stylusDevicesInRange[i], timestamp);