10 writes to StylusTipTransform
PresentationCore (4)
MS\Internal\Ink\InkSerializedFormat\DrawingAttributeSerializer.cs (1)
278da.StylusTipTransform = matrix;
System\Windows\Ink\Stroke.cs (1)
186_drawingAttributes.StylusTipTransform = newMatrix;
System\Windows\Ink\Stroke2.cs (2)
383selectedDA.StylusTipTransform = outerTransform; 391selectedDA.StylusTipTransform = innerTransform;
PresentationFramework (6)
MS\Internal\Ink\InkCollectionBehavior.cs (1)
351da.StylusTipTransform = xf;
MS\Internal\Ink\PenCursorManager.cs (5)
79da.StylusTipTransform *= tranform; 87da.StylusTipTransform *= rotationMatrix; 331StylusTipTransform = drawingAttributes.StylusTipTransform, 383singleStroke.DrawingAttributes.StylusTipTransform = Matrix.Identity; 395singleStroke.DrawingAttributes.StylusTipTransform = xf;
15 references to StylusTipTransform
PresentationCore (12)
MS\Internal\Ink\StrokeRenderer.cs (1)
213Matrix stylusTipTransform = drawingAttributes.StylusTipTransform;
System\Windows\Ink\DrawingAttributes.cs (4)
390s.Transform = StylusTipTransform; 747left.StylusTipTransform == right.StylusTipTransform && 967OnPropertyChanged(nameof(StylusTipTransform));
System\Windows\Ink\Stroke.cs (1)
176Matrix newMatrix = _drawingAttributes.StylusTipTransform;
System\Windows\Ink\Stroke2.cs (6)
668System.Diagnostics.Debug.Assert(DoubleUtil.IsZero(originalDa.StylusTipTransform.OffsetX) && DoubleUtil.IsZero(originalDa.StylusTipTransform.OffsetY)); 671Point w = originalDa.StylusTipTransform.Transform(new Point(originalDa.Width, 0)); 672Point h = originalDa.StylusTipTransform.Transform(new Point(0, originalDa.Height)); 685innerTransform *= originalDa.StylusTipTransform; 689outerTransform *= originalDa.StylusTipTransform;
PresentationFramework (3)
MS\Internal\Ink\InkCollectionBehavior.cs (1)
345xf *= da.StylusTipTransform;
MS\Internal\Ink\PenCursorManager.cs (2)
331StylusTipTransform = drawingAttributes.StylusTipTransform, 389Matrix xf = singleStroke.DrawingAttributes.StylusTipTransform;