9 writes to Matrix
PresentationCore (6)
Core\CSharp\System\Windows\Media\GeometryHitTestParameters.cs (4)
82newTransform.Matrix = origTransform.Value; 143matrixTransform.Matrix = composedMatrix; 156((MatrixTransform) (_hitGeometryInternal.Transform)).Matrix = matrix; 179((MatrixTransform) (_hitGeometryInternal.Transform)).Matrix = matrix;
Core\CSharp\System\Windows\Media\MatrixTransform.cs (2)
63Matrix = new Matrix(m11, m12, m21, m22, offsetX, offsetY); 72Matrix = matrix;
PresentationFramework.Aero (1)
Microsoft\Windows\Themes\ScrollChrome.cs (1)
758_transform.Matrix = matrix;
PresentationFramework.Luna (1)
Microsoft\Windows\Themes\ScrollChrome.cs (1)
617_transform.Matrix = matrix;
PresentationFramework.Royale (1)
Microsoft\Windows\Themes\ScrollChrome.cs (1)
577_transform.Matrix = matrix;
15 references to Matrix
PresentationCore (9)
Core\CSharp\System\Windows\Interop\HwndTarget.cs (2)
865_worldTransform.Matrix, 1905_worldTransform.Matrix,
Core\CSharp\System\Windows\Media\Generated\MatrixTransform.cs (1)
173data.Matrix = CompositionResourceManager.MatrixToMilMatrix3x2D(Matrix);
Core\CSharp\System\Windows\Media\GeometryHitTestParameters.cs (1)
171Matrix matrix = ((MatrixTransform) (_hitGeometryInternal.Transform)).Matrix;
Core\CSharp\System\Windows\Media\MatrixTransform.cs (5)
86return Matrix; 99return Matrix.IsIdentity && CanFreeze; 121return ((IFormattable)Matrix).ToString(format, provider); 126Matrix matrix = Matrix; 132result = Matrix;
PresentationFramework (2)
src\Framework\System\Windows\Input\KeyboardNavigation.cs (2)
773!Matrix.Equals(((MatrixTransform)oldTransform).Matrix, ((MatrixTransform)_hostToAdornedElement).Matrix))
System.Activities.Presentation (4)
System.Activities.Presentation\System\Activities\Presentation\View\ExtensionSurface.cs (4)
261x = ((target.ActualWidth * transform.Matrix.M11) - window.Width) / 2.0; 262y = ((target.ActualHeight * transform.Matrix.M22) - window.Height) / 2.0; 268x = ((target.ActualWidth * transform.Matrix.M11) - window.Width) / 2.0; 274y = ((target.ActualHeight * transform.Matrix.M22) - window.Height) / 2.0;