3 writes to _stylusPoints
PresentationCore (3)
System\Windows\Ink\Stroke.cs (3)
56_stylusPoints = stylusPoints; 101clone._stylusPoints = _stylusPoints.Clone(); 522_stylusPoints = value;
26 references to _stylusPoints
PresentationCore (26)
System\Windows\Ink\Stroke.cs (26)
68_stylusPoints.Changed += new EventHandler(StylusPoints_Changed); 69_stylusPoints.CountGoingToZero += new CancelEventHandler(StylusPoints_CountGoingToZero); 101clone._stylusPoints = _stylusPoints.Clone(); 173_stylusPoints.Transform(new System.Windows.Media.MatrixTransform(transformMatrix)); 212if (_stylusPoints.Count < 2) 214return _stylusPoints; 219if (!bezier.ConstructBezierState( _stylusPoints, 223return _stylusPoints.Clone(); 255new StylusPointCollection(_stylusPoints.Description, bezierPoints.Count); 262_stylusPoints[0].GetAdditionalData(), 263_stylusPoints[0].PressureFactor); 291double unbezierLength = GetDistanceBetweenPoints((Point)_stylusPoints[0], (Point)_stylusPoints[1]); 294int stylusPointsCount = _stylusPoints.Count; 306StylusPoint prevStylusPoint = _stylusPoints[stylusPointsIndex - 1]; 311float pressureDelta = _stylusPoints[stylusPointsIndex].PressureFactor - pressureAtPrev; 331GetDistanceBetweenPoints((Point)_stylusPoints[stylusPointsIndex - 1], 332(Point)_stylusPoints[stylusPointsIndex]); 343_stylusPoints[stylusPointsCount - 1].GetAdditionalData(), 344_stylusPoints[stylusPointsCount - 1].PressureFactor); 499return _stylusPoints; 517new StylusPointsReplacedEventArgs(value, _stylusPoints); 519_stylusPoints.Changed -= new EventHandler(StylusPoints_Changed); 520_stylusPoints.CountGoingToZero -= new CancelEventHandler(StylusPoints_CountGoingToZero); 524_stylusPoints.Changed += new EventHandler(StylusPoints_Changed); 525_stylusPoints.CountGoingToZero += new CancelEventHandler(StylusPoints_CountGoingToZero);