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)
465
Debug.Assert((
_capturedStylus
!= null && _capturedMouse == null)
466
|| (
_capturedStylus
== null && _capturedMouse != null),
469
if (
_capturedStylus
!= null && !
_capturedStylus
.InAir )
471
return
_capturedStylus
;
559
return
_capturedStylus
!= null || _capturedMouse != null;
831
if (
_capturedStylus
!= null )
833
stylusPoints =
_capturedStylus
.GetStylusPoints(_inkCanvas, _commonDescription);
997
if (
_capturedStylus
!= null )
1000
StylusPointCollection newPoints =
_capturedStylus
.GetStylusPoints(_inkCanvas);
1075
if (
_capturedStylus
!= null )
1115
Debug.Assert(
_capturedStylus
== null || _capturedMouse == null, "InkCanvas cannot capture both stylus and mouse at the same time.");
1116
return (inputDevice ==
_capturedStylus
&& ((StylusDevice)inputDevice).Captured == _inkCanvas)