3 writes to _capturedStylus
PresentationFramework (3)
MS\Internal\Ink\EditingCoordinator.cs (3)
933_capturedStylus = inputDevice as StylusDevice; 972_capturedStylus = null; 1023_capturedStylus = null;
13 references to _capturedStylus
PresentationFramework (13)
MS\Internal\Ink\EditingCoordinator.cs (13)
438Debug.Assert((_capturedStylus != null && _capturedMouse == null) 439|| (_capturedStylus == null && _capturedMouse != null), 442if ( _capturedStylus != null && !_capturedStylus.InAir ) 444return _capturedStylus; 532return _capturedStylus != null || _capturedMouse != null; 778if ( _capturedStylus != null ) 780stylusPoints = _capturedStylus.GetStylusPoints(_inkCanvas, _commonDescription); 939if ( _capturedStylus != null ) 941StylusPointCollection newPoints = _capturedStylus.GetStylusPoints(_inkCanvas); 1015if ( _capturedStylus != null ) 1055Debug.Assert(_capturedStylus == null || _capturedMouse == null, "InkCanvas cannot capture both stylus and mouse at the same time."); 1056return (inputDevice == _capturedStylus && ((StylusDevice)inputDevice).Captured == _inkCanvas)