3 writes to _stylusPoints
PresentationCore (3)
System\Windows\Ink\Stroke.cs (3)
71_stylusPoints = stylusPoints; 116clone._stylusPoints = _stylusPoints.Clone(); 537_stylusPoints = value;
26 references to _stylusPoints
PresentationCore (26)
System\Windows\Ink\Stroke.cs (26)
83_stylusPoints.Changed += new EventHandler(StylusPoints_Changed); 84_stylusPoints.CountGoingToZero += new CancelEventHandler(StylusPoints_CountGoingToZero); 116clone._stylusPoints = _stylusPoints.Clone(); 188_stylusPoints.Transform(new System.Windows.Media.MatrixTransform(transformMatrix)); 227if (_stylusPoints.Count < 2) 229return _stylusPoints; 234if (!bezier.ConstructBezierState( _stylusPoints, 238return _stylusPoints.Clone(); 270new StylusPointCollection(_stylusPoints.Description, bezierPoints.Count); 277_stylusPoints[0].GetAdditionalData(), 278_stylusPoints[0].PressureFactor); 306double unbezierLength = GetDistanceBetweenPoints((Point)_stylusPoints[0], (Point)_stylusPoints[1]); 309int stylusPointsCount = _stylusPoints.Count; 321StylusPoint prevStylusPoint = _stylusPoints[stylusPointsIndex - 1]; 326float pressureDelta = _stylusPoints[stylusPointsIndex].PressureFactor - pressureAtPrev; 346GetDistanceBetweenPoints((Point)_stylusPoints[stylusPointsIndex - 1], 347(Point)_stylusPoints[stylusPointsIndex]); 358_stylusPoints[stylusPointsCount - 1].GetAdditionalData(), 359_stylusPoints[stylusPointsCount - 1].PressureFactor); 514return _stylusPoints; 532new StylusPointsReplacedEventArgs(value, _stylusPoints); 534_stylusPoints.Changed -= new EventHandler(StylusPoints_Changed); 535_stylusPoints.CountGoingToZero -= new CancelEventHandler(StylusPoints_CountGoingToZero); 539_stylusPoints.Changed += new EventHandler(StylusPoints_Changed); 540_stylusPoints.CountGoingToZero += new CancelEventHandler(StylusPoints_CountGoingToZero);