10 writes to StylusTipTransform
PresentationCore (4)
MS\Internal\Ink\InkSerializedFormat\DrawingAttributeSerializer.cs (1)
279da.StylusTipTransform = matrix;
System\Windows\Ink\Stroke.cs (1)
187_drawingAttributes.StylusTipTransform = newMatrix;
System\Windows\Ink\Stroke2.cs (2)
390selectedDA.StylusTipTransform = outerTransform; 398selectedDA.StylusTipTransform = innerTransform;
PresentationFramework (6)
MS\Internal\Ink\InkCollectionBehavior.cs (1)
353da.StylusTipTransform = xf;
MS\Internal\Ink\PenCursorManager.cs (5)
80da.StylusTipTransform *= tranform; 88da.StylusTipTransform *= rotationMatrix; 332da.StylusTipTransform = drawingAttributes.StylusTipTransform; 383singleStroke.DrawingAttributes.StylusTipTransform = Matrix.Identity; 395singleStroke.DrawingAttributes.StylusTipTransform = xf;
14 references to StylusTipTransform
PresentationCore (11)
MS\Internal\Ink\StrokeRenderer.cs (1)
212Matrix stylusTipTransform = drawingAttributes.StylusTipTransform;
System\Windows\Ink\DrawingAttributes.cs (3)
391s.Transform = StylusTipTransform; 748left.StylusTipTransform == right.StylusTipTransform &&
System\Windows\Ink\Stroke.cs (1)
177Matrix newMatrix = _drawingAttributes.StylusTipTransform;
System\Windows\Ink\Stroke2.cs (6)
675System.Diagnostics.Debug.Assert(DoubleUtil.IsZero(originalDa.StylusTipTransform.OffsetX) && DoubleUtil.IsZero(originalDa.StylusTipTransform.OffsetY)); 678Point w = originalDa.StylusTipTransform.Transform(new Point(originalDa.Width, 0)); 679Point h = originalDa.StylusTipTransform.Transform(new Point(0, originalDa.Height)); 692innerTransform *= originalDa.StylusTipTransform; 696outerTransform *= originalDa.StylusTipTransform;
PresentationFramework (3)
MS\Internal\Ink\InkCollectionBehavior.cs (1)
347xf *= da.StylusTipTransform;
MS\Internal\Ink\PenCursorManager.cs (2)
332da.StylusTipTransform = drawingAttributes.StylusTipTransform; 389Matrix xf = singleStroke.DrawingAttributes.StylusTipTransform;