10 writes to StylusTipTransform
PresentationCore (4)
Core\CSharp\MS\Internal\Ink\InkSerializedFormat\DrawingAttributeSerializer.cs (1)
299da.StylusTipTransform = matrix;
Core\CSharp\System\Windows\Ink\Stroke.cs (1)
209_drawingAttributes.StylusTipTransform = newMatrix;
Core\CSharp\System\Windows\Ink\Stroke2.cs (2)
437selectedDA.StylusTipTransform = outerTransform; 445selectedDA.StylusTipTransform = innerTransform;
PresentationFramework (6)
src\Framework\MS\Internal\Ink\InkCollectionBehavior.cs (1)
414da.StylusTipTransform = xf;
src\Framework\MS\Internal\Ink\PenCursorManager.cs (5)
92da.StylusTipTransform *= tranform; 100da.StylusTipTransform *= rotationMatrix; 362da.StylusTipTransform = drawingAttributes.StylusTipTransform; 413singleStroke.DrawingAttributes.StylusTipTransform = Matrix.Identity; 425singleStroke.DrawingAttributes.StylusTipTransform = xf;
14 references to StylusTipTransform
PresentationCore (11)
Core\CSharp\MS\Internal\Ink\StrokeRenderer.cs (1)
224Matrix stylusTipTransform = drawingAttributes.StylusTipTransform;
Core\CSharp\System\Windows\Ink\DrawingAttributes.cs (3)
404s.Transform = StylusTipTransform; 764left.StylusTipTransform == right.StylusTipTransform &&
Core\CSharp\System\Windows\Ink\Stroke.cs (1)
199Matrix newMatrix = _drawingAttributes.StylusTipTransform;
Core\CSharp\System\Windows\Ink\Stroke2.cs (6)
728System.Diagnostics.Debug.Assert(DoubleUtil.IsZero(originalDa.StylusTipTransform.OffsetX) && DoubleUtil.IsZero(originalDa.StylusTipTransform.OffsetY)); 731Point w = originalDa.StylusTipTransform.Transform(new Point(originalDa.Width, 0)); 732Point h = originalDa.StylusTipTransform.Transform(new Point(0, originalDa.Height)); 745innerTransform *= originalDa.StylusTipTransform; 749outerTransform *= originalDa.StylusTipTransform;
PresentationFramework (3)
src\Framework\MS\Internal\Ink\InkCollectionBehavior.cs (1)
408xf *= da.StylusTipTransform;
src\Framework\MS\Internal\Ink\PenCursorManager.cs (2)
362da.StylusTipTransform = drawingAttributes.StylusTipTransform; 419Matrix xf = singleStroke.DrawingAttributes.StylusTipTransform;