19 writes to Transform
System.Web.DataVisualization (1)
Common\General\GdiGraphics.cs (1)
646 _graphics.Transform = value;
System.Windows.Forms (1)
winforms\Managed\System\WinForms\PropertyGridInternal\PropertyGridView.cs (1)
5653glyphGraphics.Transform = m;
System.Windows.Forms.DataVisualization (3)
Common\General\GdiGraphics.cs (1)
646 _graphics.Transform = value;
WinForm\ChartWinControl.cs (2)
471e.Graphics.Transform = drawingMatrix; 475e.Graphics.Transform = oldMatrix;
System.Workflow.Activities (2)
Designers\StateMachineDesignerPaint.cs (2)
139graphics.Transform = (oldTransform != null) ? oldTransform : new Matrix(); 166graphics.Transform = (oldTransform != null) ? oldTransform : new Matrix();
System.Workflow.ComponentModel (12)
AuthoringOM\Design\DesignerHelpers.cs (3)
524graphics.Transform = oldMatrix; 621graphics.Transform = (oldTransform != null) ? oldTransform : new Matrix(); 651graphics.Transform = (oldTransform != null) ? oldTransform : new Matrix();
AuthoringOM\Design\WorkflowLayouts.cs (6)
167graphics.Transform = transformationMatrix; 255graphics.Transform = transformationMatrix; 551graphics.Transform = graphicsMatrics; 646graphics.Transform = viewPortMatrix; 657graphics.Transform = emptyMatrix; 686graphics.Transform = viewPortMatrix;
AuthoringOM\Design\WorkflowPrinting.cs (1)
169graphics.Transform = oldTransform;
AuthoringOM\Design\WorkflowView.cs (2)
1589viewPortGraphics.Transform = transformationMatrix; 1647viewPortGraphics.Transform = new Matrix();
27 references to Transform
System.Drawing (6)
commonui\System\Drawing\Graphics.cs (1)
4139Matrix cumulTransform = this.Transform; // current context transform.
commonui\System\Drawing\GraphicsContext.cs (1)
61Matrix transform = g.Transform;
commonui\System\Drawing\Icon.cs (4)
507copy.X += (int) graphics.Transform.OffsetX; 508copy.Y += (int) graphics.Transform.OffsetY; 532copy.X += (int) graphics.Transform.OffsetX; 533copy.Y += (int) graphics.Transform.OffsetY;
System.Web.DataVisualization (3)
Common\General\ChartGraphics.cs (2)
3450else if (this.Graphics.Transform.Elements[0] != 1f || 3451this.Graphics.Transform.Elements[3] != 1f)
Common\General\GdiGraphics.cs (1)
642 return _graphics.Transform;
System.Windows.Forms (5)
winforms\Managed\System\WinForms\Cursor.cs (2)
415targetRect.X += (int) graphics.Transform.OffsetX; 416targetRect.Y += (int) graphics.Transform.OffsetY;
winforms\Managed\System\WinForms\LinkLabel.cs (2)
1170RectangleF[] rects = ((Link)links[0]).VisualRegion.GetRegionScans(e.Graphics.Transform); 1452RectangleF[] rects = link.VisualRegion.GetRegionScans(g.Transform);
winforms\Managed\System\WinForms\PropertyGridInternal\GridEntry.cs (1)
2197Matrix m = g.Transform;
System.Windows.Forms.DataVisualization (6)
Common\General\ChartGraphics.cs (2)
3450else if (this.Graphics.Transform.Elements[0] != 1f || 3451this.Graphics.Transform.Elements[3] != 1f)
Common\General\GdiGraphics.cs (1)
642 return _graphics.Transform;
WinForm\ChartWinControl.cs (3)
424float scaleX = e.Graphics.Transform.Elements[0]; 425float scaleY = e.Graphics.Transform.Elements[3]; 469System.Drawing.Drawing2D.Matrix oldMatrix = e.Graphics.Transform;
System.Workflow.Activities (2)
Designers\StateMachineDesignerPaint.cs (2)
131Matrix oldTransform = graphics.Transform; 158Matrix oldTransform = graphics.Transform;
System.Workflow.ComponentModel (5)
AuthoringOM\Design\DesignerHelpers.cs (4)
500Matrix oldMatrix = graphics.Transform; 610Matrix oldTransform = graphics.Transform; 640Matrix oldTransform = graphics.Transform; 915NativeMethods.XFORM xform = new NativeMethods.XFORM(this.graphics.Transform);
AuthoringOM\Design\WorkflowPrinting.cs (1)
140Matrix oldTransform = graphics.Transform;