2 writes to _stroke
PresentationCore (2)
System\Windows\Ink\IncrementalHitTester.cs (2)
726
_stroke
= stroke;
870
_stroke
= null;
14 references to _stroke
PresentationCore (14)
System\Windows\Ink\IncrementalHitTester.cs (14)
730
_stroke
.DrawingAttributesChanged += new PropertyDataChangedEventHandler(OnStrokeDrawingAttributesChanged);
731
_stroke
.StylusPointsReplaced += new StylusPointsReplacedEventHandler(OnStylusPointsReplaced);
732
_stroke
.StylusPoints.Changed += new EventHandler(OnStylusPointsChanged);
733
_stroke
.DrawingAttributesReplaced += new DrawingAttributesReplacedEventHandler(OnDrawingAttributesReplaced);
737
internal Stroke Stroke { get { return
_stroke
; } }
766
if (
_stroke
.DrawingAttributes.FitToCurve)
768
_stylusPoints =
_stroke
.GetBezierStylusPoints();
772
_stylusPoints =
_stroke
.StylusPoints;
862
if (
_stroke
!= null)
865
_stroke
.DrawingAttributesChanged -= new PropertyDataChangedEventHandler(OnStrokeDrawingAttributesChanged);
866
_stroke
.StylusPointsReplaced -= new StylusPointsReplacedEventHandler(OnStylusPointsReplaced);
867
_stroke
.StylusPoints.Changed -= new EventHandler(OnStylusPointsChanged);
868
_stroke
.DrawingAttributesReplaced -= new DrawingAttributesReplacedEventHandler(OnDrawingAttributesReplaced);
927
_bounds =
_stroke
.GetBounds();