3 writes to _capturedStylus
PresentationFramework (3)
MS\Internal\Ink\EditingCoordinator.cs (3)
926_capturedStylus = inputDevice as StylusDevice; 962_capturedStylus = null; 1013_capturedStylus = null;
13 references to _capturedStylus
PresentationFramework (13)
MS\Internal\Ink\EditingCoordinator.cs (13)
437Debug.Assert((_capturedStylus != null && _capturedMouse == null) 438|| (_capturedStylus == null && _capturedMouse != null), 441if ( _capturedStylus != null && !_capturedStylus.InAir ) 443return _capturedStylus; 531return _capturedStylus != null || _capturedMouse != null; 774if ( _capturedStylus != null ) 776stylusPoints = _capturedStylus.GetStylusPoints(_inkCanvas, _commonDescription); 932if ( _capturedStylus != null ) 934StylusPointCollection newPoints = _capturedStylus.GetStylusPoints(_inkCanvas); 1005if ( _capturedStylus != null ) 1045Debug.Assert(_capturedStylus == null || _capturedMouse == null, "InkCanvas cannot capture both stylus and mouse at the same time."); 1046return (inputDevice == _capturedStylus && ((StylusDevice)inputDevice).Captured == _inkCanvas)