3 writes to _capturedStylus
PresentationFramework (3)
MS\Internal\Ink\EditingCoordinator.cs (3)
948_capturedStylus = inputDevice as StylusDevice; 987_capturedStylus = null; 1038_capturedStylus = null;
13 references to _capturedStylus
PresentationFramework (13)
MS\Internal\Ink\EditingCoordinator.cs (13)
453Debug.Assert((_capturedStylus != null && _capturedMouse == null) 454|| (_capturedStylus == null && _capturedMouse != null), 457if ( _capturedStylus != null && !_capturedStylus.InAir ) 459return _capturedStylus; 547return _capturedStylus != null || _capturedMouse != null; 793if ( _capturedStylus != null ) 795stylusPoints = _capturedStylus.GetStylusPoints(_inkCanvas, _commonDescription); 954if ( _capturedStylus != null ) 956StylusPointCollection newPoints = _capturedStylus.GetStylusPoints(_inkCanvas); 1030if ( _capturedStylus != null ) 1070Debug.Assert(_capturedStylus == null || _capturedMouse == null, "InkCanvas cannot capture both stylus and mouse at the same time."); 1071return (inputDevice == _capturedStylus && ((StylusDevice)inputDevice).Captured == _inkCanvas)