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)
438
Debug.Assert((
_capturedStylus
!= null && _capturedMouse == null)
439
|| (
_capturedStylus
== null && _capturedMouse != null),
442
if (
_capturedStylus
!= null && !
_capturedStylus
.InAir )
444
return
_capturedStylus
;
532
return
_capturedStylus
!= null || _capturedMouse != null;
778
if (
_capturedStylus
!= null )
780
stylusPoints =
_capturedStylus
.GetStylusPoints(_inkCanvas, _commonDescription);
939
if (
_capturedStylus
!= null )
941
StylusPointCollection newPoints =
_capturedStylus
.GetStylusPoints(_inkCanvas);
1015
if (
_capturedStylus
!= null )
1055
Debug.Assert(
_capturedStylus
== null || _capturedMouse == null, "InkCanvas cannot capture both stylus and mouse at the same time.");
1056
return (inputDevice ==
_capturedStylus
&& ((StylusDevice)inputDevice).Captured == _inkCanvas)