10 writes to StylusTipTransform
PresentationCore (4)
MS\Internal\Ink\InkSerializedFormat\DrawingAttributeSerializer.cs (1)
289da.StylusTipTransform = matrix;
System\Windows\Ink\Stroke.cs (1)
202_drawingAttributes.StylusTipTransform = newMatrix;
System\Windows\Ink\Stroke2.cs (2)
399selectedDA.StylusTipTransform = outerTransform; 407selectedDA.StylusTipTransform = innerTransform;
PresentationFramework (6)
MS\Internal\Ink\InkCollectionBehavior.cs (1)
362da.StylusTipTransform = xf;
MS\Internal\Ink\PenCursorManager.cs (5)
85da.StylusTipTransform *= tranform; 93da.StylusTipTransform *= rotationMatrix; 337da.StylusTipTransform = drawingAttributes.StylusTipTransform; 388singleStroke.DrawingAttributes.StylusTipTransform = Matrix.Identity; 400singleStroke.DrawingAttributes.StylusTipTransform = xf;
14 references to StylusTipTransform
PresentationCore (11)
MS\Internal\Ink\StrokeRenderer.cs (1)
221Matrix stylusTipTransform = drawingAttributes.StylusTipTransform;
System\Windows\Ink\DrawingAttributes.cs (3)
402s.Transform = StylusTipTransform; 759left.StylusTipTransform == right.StylusTipTransform &&
System\Windows\Ink\Stroke.cs (1)
192Matrix newMatrix = _drawingAttributes.StylusTipTransform;
System\Windows\Ink\Stroke2.cs (6)
686System.Diagnostics.Debug.Assert(DoubleUtil.IsZero(originalDa.StylusTipTransform.OffsetX) && DoubleUtil.IsZero(originalDa.StylusTipTransform.OffsetY)); 689Point w = originalDa.StylusTipTransform.Transform(new Point(originalDa.Width, 0)); 690Point h = originalDa.StylusTipTransform.Transform(new Point(0, originalDa.Height)); 703innerTransform *= originalDa.StylusTipTransform; 707outerTransform *= originalDa.StylusTipTransform;
PresentationFramework (3)
MS\Internal\Ink\InkCollectionBehavior.cs (1)
356xf *= da.StylusTipTransform;
MS\Internal\Ink\PenCursorManager.cs (2)
337da.StylusTipTransform = drawingAttributes.StylusTipTransform; 394Matrix xf = singleStroke.DrawingAttributes.StylusTipTransform;