3 writes to _stylusPoints
PresentationCore (3)
System\Windows\Ink\Stroke.cs (3)
55
_stylusPoints
= stylusPoints;
100
clone.
_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);
100
clone._stylusPoints =
_stylusPoints
.Clone();
172
_stylusPoints
.Transform(new System.Windows.Media.MatrixTransform(transformMatrix));
211
if (
_stylusPoints
.Count < 2)
213
return
_stylusPoints
;
218
if (!bezier.ConstructBezierState(
_stylusPoints
,
222
return
_stylusPoints
.Clone();
254
new StylusPointCollection(
_stylusPoints
.Description, bezierPoints.Count);
261
_stylusPoints
[0].GetAdditionalData(),
262
_stylusPoints
[0].PressureFactor);
290
double unbezierLength = GetDistanceBetweenPoints((Point)
_stylusPoints
[0], (Point)
_stylusPoints
[1]);
293
int stylusPointsCount =
_stylusPoints
.Count;
305
StylusPoint prevStylusPoint =
_stylusPoints
[stylusPointsIndex - 1];
310
float pressureDelta =
_stylusPoints
[stylusPointsIndex].PressureFactor - pressureAtPrev;
330
GetDistanceBetweenPoints((Point)
_stylusPoints
[stylusPointsIndex - 1],
331
(Point)
_stylusPoints
[stylusPointsIndex]);
342
_stylusPoints
[stylusPointsCount - 1].GetAdditionalData(),
343
_stylusPoints
[stylusPointsCount - 1].PressureFactor);
498
return
_stylusPoints
;
516
new 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);