3 writes to _stylusPoints
PresentationCore (3)
System\Windows\Ink\Stroke.cs (3)
55_stylusPoints = stylusPoints; 100clone._stylusPoints = _stylusPoints.Clone(); 521_stylusPoints = value;
26 references to _stylusPoints
PresentationCore (26)
System\Windows\Ink\Stroke.cs (26)
67_stylusPoints.Changed += new EventHandler(StylusPoints_Changed); 68_stylusPoints.CountGoingToZero += new CancelEventHandler(StylusPoints_CountGoingToZero); 100clone._stylusPoints = _stylusPoints.Clone(); 172_stylusPoints.Transform(new System.Windows.Media.MatrixTransform(transformMatrix)); 211if (_stylusPoints.Count < 2) 213return _stylusPoints; 218if (!bezier.ConstructBezierState( _stylusPoints, 222return _stylusPoints.Clone(); 254new StylusPointCollection(_stylusPoints.Description, bezierPoints.Count); 261_stylusPoints[0].GetAdditionalData(), 262_stylusPoints[0].PressureFactor); 290double unbezierLength = GetDistanceBetweenPoints((Point)_stylusPoints[0], (Point)_stylusPoints[1]); 293int stylusPointsCount = _stylusPoints.Count; 305StylusPoint prevStylusPoint = _stylusPoints[stylusPointsIndex - 1]; 310float pressureDelta = _stylusPoints[stylusPointsIndex].PressureFactor - pressureAtPrev; 330GetDistanceBetweenPoints((Point)_stylusPoints[stylusPointsIndex - 1], 331(Point)_stylusPoints[stylusPointsIndex]); 342_stylusPoints[stylusPointsCount - 1].GetAdditionalData(), 343_stylusPoints[stylusPointsCount - 1].PressureFactor); 498return _stylusPoints; 516new StylusPointsReplacedEventArgs(value, _stylusPoints); 518_stylusPoints.Changed -= new EventHandler(StylusPoints_Changed); 519_stylusPoints.CountGoingToZero -= new CancelEventHandler(StylusPoints_CountGoingToZero); 523_stylusPoints.Changed += new EventHandler(StylusPoints_Changed); 524_stylusPoints.CountGoingToZero += new CancelEventHandler(StylusPoints_CountGoingToZero);