102 instantiations of MatrixTransform
PresentationCore (35)
MS\Internal\TextFormatting\TextFormatterImp.cs (1)
595return new MatrixTransform(m11, 0, 0, m22, offsetX, offsetY);
System\Windows\Ink\Stroke.cs (1)
173_stylusPoints.Transform(new System.Windows.Media.MatrixTransform(transformMatrix));
System\Windows\Input\Stylus\Common\RawStylusInput.cs (1)
75group.Children.Add(new MatrixTransform(_report.InputSource.CompositionTarget.TransformFromDevice));
System\Windows\Input\Stylus\Pointer\PointerStylusDevice.cs (1)
1136group.Children.Add(new MatrixTransform(PointerTabletDevice.TabletToScreen * toDevice));
System\Windows\Input\Stylus\Pointer\PointerStylusPlugInManager.cs (2)
444transformTabletToView.Children.Add(new MatrixTransform(GetTabletToViewTransform(stylusDevice.TabletDevice))); // this gives matrix in measured units (not device) 463transformTabletToView.Children.Add(new MatrixTransform(GetTabletToViewTransform(stylusDevice.TabletDevice))); // this gives matrix in measured units (not device)
System\Windows\Input\Stylus\Wisp\PenContexts.cs (2)
420transformTabletToView.Children.Add(new MatrixTransform(_stylusLogic.GetTabletToViewTransform(inputReport.InputSource, stylusDevice.TabletDevice))); // this gives matrix in measured units (not device) 439transformTabletToView.Children.Add(new MatrixTransform(_stylusLogic.GetTabletToViewTransform(inputReport.InputSource, stylusDevice.TabletDevice))); // this gives matrix in measured units (not device)
System\Windows\Input\Stylus\Wisp\WispLogic.cs (2)
2683transformTabletToView.Children.Add(new MatrixTransform(GetTabletToViewTransform(rawStylusInputReport.InputSource, stylusDevice.TabletDevice))); // this gives matrix in measured units (not device) 2702transformTabletToView.Children.Add(new MatrixTransform(GetTabletToViewTransform(rawStylusInputReport.InputSource, stylusDevice.TabletDevice))); // this gives matrix in measured units (not device)
System\Windows\Input\Stylus\Wisp\WispStylusDevice.cs (3)
1286group.Children.Add(new MatrixTransform(_stylusLogic.GetTabletToViewTransform(source, _tabletDevice.TabletDevice))); 1415MatrixTransform additionalTransform = new MatrixTransform(new Matrix(1, 0, 0, 1, 1635MatrixTransform additionalTransform = new MatrixTransform(new Matrix(1, 0, 0, 1,
System\Windows\InterOp\HwndPointerInputProvider.cs (1)
322MatrixTransform screenToTablet = new MatrixTransform(_currentTabletDevice.TabletToScreen);
System\Windows\InterOp\HwndTarget.cs (2)
268_worldTransform = new MatrixTransform( 1688_worldTransform = new MatrixTransform(new Matrix(
System\Windows\Media\GeneralTransformGroup.cs (1)
132return new MatrixTransform(matrix);
System\Windows\Media\Generated\MatrixTransform.cs (1)
98return new MatrixTransform();
System\Windows\Media\Geometry.cs (1)
237copy.Transform = new MatrixTransform(internalTransform.Value * transform.Value);
System\Windows\Media\GeometryGroup.cs (1)
60Transform combined = new MatrixTransform(GetCombinedMatrix(transform));
System\Windows\Media\GeometryHitTestParameters.cs (1)
55MatrixTransform newTransform = new MatrixTransform();
System\Windows\Media\HitTestWithGeometryDrawingContextWalker.cs (1)
267transform = new MatrixTransform(combined);
System\Windows\Media\Parsers.cs (1)
296return new MatrixTransform(matrix);
System\Windows\Media\Renderer.cs (1)
61MatrixTransform mtDeviceTransform = new MatrixTransform(deviceTransform);
System\Windows\Media\Transform.cs (2)
42Transform identity = new MatrixTransform(Matrix.Identity); 158return new MatrixTransform(matrix);
System\Windows\Media\Visual.cs (9)
2217result = new MatrixTransform(m); 2221group.Children.Add(new MatrixTransform(m)); 4392MatrixTransform m = new MatrixTransform(m0); 4400g0 = new MatrixTransform(m0); 4405g1 = new MatrixTransform(m1); 4441MatrixTransform matrixTransform = new MatrixTransform(simpleTransform); 4524group.Children.Add(new MatrixTransform(m)); 4554group.Children.Add(new MatrixTransform(m)); 4592group.Children.Add(new MatrixTransform(m));
PresentationFramework (29)
MS\Internal\Controls\StickyNote\StickyNoteAnnotations.cs (1)
1024transformations.Children.Add(new MatrixTransform(-1.0, 0.0, 0.0, 1.0, this.Width, 0.0));
MS\Internal\Documents\FlowDocumentPaginator.cs (1)
371transform = new MatrixTransform(-1.0, 0.0, 0.0, 1.0, flowDocumentPage.Size.Width, 0.0);
MS\Internal\Documents\TextDocumentView.cs (5)
3326MatrixTransform transform = new MatrixTransform(-1.0, 0.0, 0.0, 1.0, _owner.Size.Width, 0.0); 3344MatrixTransform transform = new MatrixTransform(-1.0, 0.0, 0.0, 1.0, _owner.Size.Width, 0.0); 3370transform = new MatrixTransform(-1.0, 0.0, 0.0, 1.0, _owner.Size.Width, 0.0); 3388MatrixTransform transform = new MatrixTransform(-1.0, 0.0, 0.0, 1.0, _owner.Size.Width, 0.0); 3406MatrixTransform transform = new MatrixTransform(-1.0, 0.0, 0.0, 1.0, _owner.Size.Width, 0.0);
MS\Internal\Documents\TextViewBase.cs (1)
448Transform transform = new MatrixTransform(firstTransform.Value * secondTransform.Value);
MS\Internal\PtsHost\ListParaClient.cs (1)
97ctx.PushTransform(new MatrixTransform(-1.0, 0.0, 0.0, 1.0, TextDpi.FromTextDpi(2 * listItemParaClient.Rect.u + listItemParaClient.Rect.du), 0.0));
MS\Internal\PtsHost\PtsHelper.cs (1)
42MatrixTransform transform = new MatrixTransform(-1.0, 0.0, 0.0, 1.0, width, 0.0);
MS\Internal\PtsHost\TextParaClient.cs (1)
756transform = new MatrixTransform(-1.0, 0.0, 0.0, 1.0, TextDpi.FromTextDpi(2 * _pageContext.PageRect.u + _pageContext.PageRect.du), 0.0);
System\Windows\Controls\ComboBox.cs (1)
926visualBrush.Transform = new MatrixTransform(new Matrix(-1.0, 0.0, 0.0, 1.0, _clonedElement.RenderSize.Width, 0.0));
System\Windows\Controls\ItemsControl.cs (1)
3136transform = new MatrixTransform(matrix);
System\Windows\Controls\Primitives\DocumentPageView.cs (3)
394pageTransform = new MatrixTransform(-1.0, 0.0, 0.0, 1.0, pageSize.Width, 0.0); 407pageTransform = new MatrixTransform(pageTransform.Value * pageScaleTransform.Value); 423pageTransform = new MatrixTransform(pageTransform.Value * pageScaleTransform.Value);
System\Windows\Controls\Primitives\Popup.cs (1)
1846_popupRoot.Transform = new MatrixTransform(popupTransform);
System\Windows\Documents\AdornerLayer.cs (1)
975matrixTransform = new MatrixTransform(matrix);
System\windows\Documents\CaretElement.cs (1)
508: new MatrixTransform(targetGeometry.Transform.Value * transformToAdd.Value);
System\Windows\FrameworkElement.cs (4)
3954return new MatrixTransform(-1.0, 0.0, 0.0, 1.0, RenderSize.Width, 0.0); 4094_transform = new MatrixTransform(sourceTransform.Value); 4973slotClip.Transform = new MatrixTransform(m); 4995slotClip.Transform = new MatrixTransform(slotClip.Transform.Value * rtlMirror.Value);
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
6721bamlType.DefaultConstructor = delegate() { return new System.Windows.Media.MatrixTransform(); };
System\Windows\Markup\KnownTypes.cs (1)
1403case KnownElements.MatrixTransform: o = new System.Windows.Media.MatrixTransform(); break;
System\Windows\Shapes\Shape.cs (3)
100return new MatrixTransform(stretchMatrix.Value); 752_renderedGeometry.Transform = new MatrixTransform(stretchMatrix); 756_renderedGeometry.Transform = new MatrixTransform(renderedTransform.Value * stretchMatrix);
System\Windows\Window.cs (1)
1906InternalSetLayoutTransform(child, new MatrixTransform(-1.0, 0.0, 0.0, 1.0, childArrangeBounds.Width, 0.0));
PresentationFramework.Aero (2)
Microsoft\Windows\Themes\DataGridHeaderBorder.cs (1)
55MatrixTransform horizontalRotate = new MatrixTransform(m1 * m2);
Microsoft\Windows\Themes\ScrollChrome.cs (1)
746_transform = new MatrixTransform();
PresentationFramework.Aero2 (2)
Microsoft\Windows\Themes\DataGridHeaderBorder.cs (1)
55MatrixTransform horizontalRotate = new MatrixTransform(m1 * m2);
Microsoft\Windows\Themes\ScrollChrome.cs (1)
746_transform = new MatrixTransform();
PresentationFramework.AeroLite (1)
Microsoft\Windows\Themes\DataGridHeaderBorder.cs (1)
54MatrixTransform horizontalRotate = new MatrixTransform(m1 * m2);
PresentationFramework.Classic (3)
Microsoft\Windows\Themes\ClassicBorderDecorator.cs (3)
1194_tabCache.Transform = new MatrixTransform(new Matrix(0.0, 1.0, 1.0, 0.0, xOffset, yOffset)); 1197_tabCache.Transform = new MatrixTransform(new Matrix(0.0, -1.0, -1.0, 0.0, xOffset, yOffset)); 1200_tabCache.Transform = new MatrixTransform(new Matrix(-1.0, 0.0, 0.0, -1.0, xOffset, yOffset));
PresentationFramework.Luna (2)
Microsoft\Windows\Themes\DataGridHeaderBorder.cs (1)
94MatrixTransform horizontalRotate = new MatrixTransform(m1 * m2);
Microsoft\Windows\Themes\ScrollChrome.cs (1)
606_transform = new MatrixTransform();
PresentationFramework.Royale (2)
Microsoft\Windows\Themes\DataGridHeaderBorder.cs (1)
50MatrixTransform horizontalRotate = new MatrixTransform(m1 * m2);
Microsoft\Windows\Themes\ScrollChrome.cs (1)
566_transform = new MatrixTransform();
PresentationUI (2)
MS\Internal\Documents\DocumentApplicationDocumentViewer.cs (2)
2468tg.Children.Add(new MatrixTransform(0.0, 1.0, -1.0, 0.0, fixedPage.Height, 0.0)); 2477tg.Children.Add(new MatrixTransform(0.0, -1.0, 1.0, 0.0, 0.0, fixedPage.Width));
ReachFramework (22)
AlphaFlattener\BrushProxy.cs (6)
418_brush.Transform = new MatrixTransform(mat); 742Geometry viewboxGeometry = new RectangleGeometry(vb, 0, 0, new MatrixTransform(viewboxToViewportTransformHint)); 801_brush.Transform = new MatrixTransform(mat); 3576b.Transform = new MatrixTransform(bm); 3592mb.Transform = new MatrixTransform(mbm); 4312geometry.Transform = new MatrixTransform(_trans);
AlphaFlattener\Flattener.cs (1)
1326_ctx.PushTransform(new MatrixTransform(transform));
AlphaFlattener\ImageProxy.cs (1)
105new MatrixTransform(Matrix.CreateScaling(scaleX, scaleY))
AlphaFlattener\Optimizer.cs (1)
63ctx.PushTransform(new MatrixTransform(mat));
AlphaFlattener\Primitive.cs (5)
568dc.PushTransform(new MatrixTransform(Transform)); 977new MatrixTransform(inverseTileTransform) 1409viewportGeometry.Transform = Utility.MultiplyTransform(tb.Transform, new MatrixTransform(Transform)); 1449contentGeometry.Transform = Utility.MultiplyTransform(tb.Transform, new MatrixTransform(Transform)); 1870brush.Transform = new MatrixTransform(Transform);
AlphaFlattener\Utility.cs (3)
314return new MatrixTransform(mat); 370newg.Transform = MultiplyTransform(newg.Transform, new MatrixTransform(t)); 1792transform = new MatrixTransform(matrix);
Serialization\DrawingContextFlattener.cs (1)
931_context.PushTransform(new MatrixTransform(transform));
Serialization\Manager\ReachSerializationUtils.cs (2)
925transform = new MatrixTransform(Matrix.Multiply(transform.Value, rootTransform.Value)); 927transform = new MatrixTransform(
Serialization\VisualSerializer.cs (2)
1394return new MatrixTransform(m); 2348Transform transform = new MatrixTransform(mat);
System.Windows.Controls.Ribbon (2)
Microsoft\Windows\Controls\Ribbon\RibbonComboBox.cs (1)
569visualBrush.Transform = new MatrixTransform(new Matrix(-1.0, 0.0, 0.0, 1.0, _clonedElement.RenderSize.Width, 0.0));
Microsoft\Windows\Controls\Ribbon\RibbonToolTip.cs (1)
390MatrixTransform deviceTransform = new MatrixTransform(RibbonHelper.GetTransformToDevice(referenceFE));
58 references to MatrixTransform
PresentationCore (28)
MS\Internal\TextFormatting\DrawingState.cs (3)
28private MatrixTransform _antiInversion; // anti-inversion transform applied on drawing surface 38MatrixTransform antiInversion, 127internal MatrixTransform AntiInversion
MS\Internal\TextFormatting\FullTextLine.cs (2)
541MatrixTransform antiInversion = TextFormatterImp.CreateAntiInversionTransform( 575MatrixTransform antiInversion
MS\Internal\TextFormatting\SimpleTextLine.cs (1)
483MatrixTransform antiInversion = TextFormatterImp.CreateAntiInversionTransform(
MS\Internal\TextFormatting\TextFormatterImp.cs (1)
566internal static MatrixTransform CreateAntiInversionTransform(
System\Windows\Input\Stylus\Wisp\WispStylusDevice.cs (2)
1415MatrixTransform additionalTransform = new MatrixTransform(new Matrix(1, 0, 0, 1, 1635MatrixTransform additionalTransform = new MatrixTransform(new Matrix(1, 0, 0, 1,
System\Windows\InterOp\HwndPointerInputProvider.cs (2)
322MatrixTransform screenToTablet = new MatrixTransform(_currentTabletDevice.TabletToScreen); 323screenToTablet = (MatrixTransform)screenToTablet.Inverse;
System\Windows\InterOp\HwndTarget.cs (1)
103private MatrixTransform _worldTransform;
System\Windows\Media\Generated\MatrixTransform.cs (7)
31public new MatrixTransform Clone() 33return (MatrixTransform)base.Clone(); 40public new MatrixTransform CloneCurrentValue() 42return (MatrixTransform)base.CloneCurrentValue(); 58MatrixTransform target = ((MatrixTransform) d); 262Type typeofThis = typeof(MatrixTransform);
System\Windows\Media\GeometryHitTestParameters.cs (6)
55MatrixTransform newTransform = new MatrixTransform(); 124MatrixTransform matrixTransform = (MatrixTransform) _hitGeometryInternal.Transform; 147((MatrixTransform) (_hitGeometryInternal.Transform)).Matrix = matrix; 162Matrix matrix = ((MatrixTransform) (_hitGeometryInternal.Transform)).Matrix; 170((MatrixTransform) (_hitGeometryInternal.Transform)).Matrix = matrix;
System\Windows\Media\Renderer.cs (1)
61MatrixTransform mtDeviceTransform = new MatrixTransform(deviceTransform);
System\Windows\Media\Visual.cs (2)
4392MatrixTransform m = new MatrixTransform(m0); 4441MatrixTransform matrixTransform = new MatrixTransform(simpleTransform);
PresentationFramework (16)
MS\Internal\Documents\FlowDocumentPaginator.cs (1)
349MatrixTransform transform;
MS\Internal\Documents\TextDocumentView.cs (4)
3326MatrixTransform transform = new MatrixTransform(-1.0, 0.0, 0.0, 1.0, _owner.Size.Width, 0.0); 3344MatrixTransform transform = new MatrixTransform(-1.0, 0.0, 0.0, 1.0, _owner.Size.Width, 0.0); 3388MatrixTransform transform = new MatrixTransform(-1.0, 0.0, 0.0, 1.0, _owner.Size.Width, 0.0); 3406MatrixTransform transform = new MatrixTransform(-1.0, 0.0, 0.0, 1.0, _owner.Size.Width, 0.0);
MS\Internal\PtsHost\PtsHelper.cs (1)
42MatrixTransform transform = new MatrixTransform(-1.0, 0.0, 0.0, 1.0, width, 0.0);
System\Windows\Controls\ItemsControl.cs (2)
3116MatrixTransform matrixTransform = transform as MatrixTransform;
System\Windows\Documents\AdornerLayer.cs (1)
969MatrixTransform matrixTransform;
System\Windows\Input\KeyboardNavigation.cs (4)
713if (!(oldTransform is MatrixTransform) || 714!(_hostToAdornedElement is MatrixTransform) || 715!Matrix.Equals(((MatrixTransform)oldTransform).Matrix, ((MatrixTransform)_hostToAdornedElement).Matrix))
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
489case 395: t = () => typeof(MatrixTransform); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
6719typeof(System.Windows.Media.MatrixTransform),
System\Windows\Markup\KnownTypes.cs (1)
5949case KnownElements.MatrixTransform: t = typeof(System.Windows.Media.MatrixTransform); break;
PresentationFramework.Aero (2)
Microsoft\Windows\Themes\DataGridHeaderBorder.cs (1)
55MatrixTransform horizontalRotate = new MatrixTransform(m1 * m2);
Microsoft\Windows\Themes\ScrollChrome.cs (1)
1807private MatrixTransform _transform;
PresentationFramework.Aero2 (2)
Microsoft\Windows\Themes\DataGridHeaderBorder.cs (1)
55MatrixTransform horizontalRotate = new MatrixTransform(m1 * m2);
Microsoft\Windows\Themes\ScrollChrome.cs (1)
1807private MatrixTransform _transform;
PresentationFramework.AeroLite (1)
Microsoft\Windows\Themes\DataGridHeaderBorder.cs (1)
54MatrixTransform horizontalRotate = new MatrixTransform(m1 * m2);
PresentationFramework.Classic (2)
Microsoft\Windows\Themes\ClassicBorderDecorator.cs (2)
1184private MatrixTransform GetTabTransform(ClassicBorderStyle style, double xOffset, double yOffset) 1465public MatrixTransform Transform;
PresentationFramework.Luna (2)
Microsoft\Windows\Themes\DataGridHeaderBorder.cs (1)
94MatrixTransform horizontalRotate = new MatrixTransform(m1 * m2);
Microsoft\Windows\Themes\ScrollChrome.cs (1)
2532private MatrixTransform _transform;
PresentationFramework.Royale (2)
Microsoft\Windows\Themes\DataGridHeaderBorder.cs (1)
50MatrixTransform horizontalRotate = new MatrixTransform(m1 * m2);
Microsoft\Windows\Themes\ScrollChrome.cs (1)
1149private MatrixTransform _transform;
System.Windows.Controls.Ribbon (3)
Microsoft\Windows\Controls\Ribbon\RibbonToolTip.cs (3)
387MatrixTransform transform = referenceFE.TransformToDescendant(placementTarget) as MatrixTransform; 390MatrixTransform deviceTransform = new MatrixTransform(RibbonHelper.GetTransformToDevice(referenceFE));