3 writes to _capturedStylus
PresentationFramework (3)
src\Framework\MS\Internal\Ink\EditingCoordinator.cs (3)
991_capturedStylus = inputDevice as StylusDevice; 1031_capturedStylus = null; 1083_capturedStylus = null;
13 references to _capturedStylus
PresentationFramework (13)
src\Framework\MS\Internal\Ink\EditingCoordinator.cs (13)
465Debug.Assert((_capturedStylus != null && _capturedMouse == null) 466|| (_capturedStylus == null && _capturedMouse != null), 469if ( _capturedStylus != null && !_capturedStylus.InAir ) 471return _capturedStylus; 559return _capturedStylus != null || _capturedMouse != null; 831if ( _capturedStylus != null ) 833stylusPoints = _capturedStylus.GetStylusPoints(_inkCanvas, _commonDescription); 997if ( _capturedStylus != null ) 1000StylusPointCollection newPoints = _capturedStylus.GetStylusPoints(_inkCanvas); 1075if ( _capturedStylus != null ) 1115Debug.Assert(_capturedStylus == null || _capturedMouse == null, "InkCanvas cannot capture both stylus and mouse at the same time."); 1116return (inputDevice == _capturedStylus && ((StylusDevice)inputDevice).Captured == _inkCanvas)