6 overrides of Value
PresentationCore (6)
System\Windows\Media\MatrixTransform.cs (1)
59public override Matrix Value
System\Windows\Media\RotateTransform.cs (1)
45public override Matrix Value
System\Windows\Media\ScaleTransform.cs (1)
51public override Matrix Value
System\Windows\Media\SkewTransform.cs (1)
41public override Matrix Value
System\Windows\Media\TransformGroup.cs (1)
30public override Matrix Value
System\Windows\Media\TranslateTransform.cs (1)
40public override Matrix Value
132 references to Value
PresentationCore (41)
src\Microsoft.DotNet.Wpf\src\Shared\MS\Internal\PointUtil.cs (1)
146Matrix cm = transform.Value;
System\Windows\Media\BoundsDrawingContextWalker.cs (1)
413newValue = transform.Value;
System\Windows\Media\CombinedGeometry.cs (1)
147Matrix matrix = transform.Value;
System\Windows\Media\Composition.cs (1)
133Matrix m = t.Value;
System\Windows\Media\EllipseGeometry.cs (1)
242area *= Math.Abs(transform.Value.Determinant);
System\Windows\Media\GeneralTransformGroup.cs (1)
127matrix *= t.Value;
System\Windows\Media\Geometry.cs (5)
236copy.Transform = new MatrixTransform(internalTransform.Value * transform.Value); 897matrix = internalTransform.Value; 901matrix *= transform.Value; 906matrix = transform.Value;
System\Windows\Media\GeometryHitTestParameters.cs (3)
68newTransform.Matrix = origTransform.Value; 90Debug.Assert(_hitGeometryInternal.Transform.Value == _hitGeometryCache.Transform.Value,
System\Windows\Media\HitTestWithGeometryDrawingContextWalker.cs (2)
265Matrix combined = transform.Value * _currentTransform.Value;
System\Windows\Media\HitTestWithPointDrawingContextWalker.cs (1)
197Matrix matrix = transform.Value;
System\Windows\Media\Imaging\TransformedBitmap.cs (2)
91Matrix m = newTransform.Value; 112Matrix m = newTransform.Value;
System\Windows\Media\LineGeometry.cs (2)
200Matrix matrix = internalTransform.Value; 209Matrix matrix = transform.Value;
System\Windows\Media\MatrixStack.cs (1)
112_items[_size] = transform.Value;
System\Windows\Media\RectangleGeometry.cs (1)
292area *= Math.Abs(transform.Value.Determinant);
System\Windows\Media\Transform.cs (6)
67Matrix matrix = Value; 78result = Value; 84Matrix matrix = Value; 106currentTransformValue = transform.Value; 122Matrix m = Value; 149Matrix matrix = Value;
System\Windows\Media\TransformGroup.cs (2)
42Matrix transform = children.Internal_GetItem(0).Value; 46transform *= children.Internal_GetItem(i).Value;
System\Windows\Media\Visual.cs (10)
578Matrix m = transform.Value; 1110Matrix m = transform.Value; 1961Matrix originalMatrix = geometryParams.InternalHitGeometry.Transform.Value; 1976Debug.Assert(Matrix.Equals(geometryParams.InternalHitGeometry.Transform.Value, originalMatrix), 2110Matrix inv = childTransform.Value; 2188Matrix cm = affineTransform.Value; 2209Matrix cm = transform.Value; 2314Matrix m = childTransform.Value; 4513Matrix cm = affineTransform.Value; 4534Matrix cm = transform.Value;
PresentationFramework (38)
MS\Internal\Controls\StickyNote\StickyNoteAnnotations.cs (1)
1398rect.Transform(adornerTransform.Value);
MS\Internal\Documents\TextViewBase.cs (2)
447Transform transform = new MatrixTransform(firstTransform.Value * secondTransform.Value);
MS\Internal\Ink\EditBehavior.cs (2)
207Matrix xf = layoutTransform.Value; 208xf *= renderTransform.Value;
System\Windows\Controls\DocumentViewer.cs (1)
1317tr.Value);
System\Windows\Controls\Primitives\DocumentPageView.cs (2)
410pageTransform = new MatrixTransform(pageTransform.Value * pageScaleTransform.Value); 426pageTransform = new MatrixTransform(pageTransform.Value * pageScaleTransform.Value);
System\Windows\Controls\Primitives\Popup.cs (2)
1815Matrix popupTransform = LayoutTransform.Value * RenderTransform.Value;
System\windows\Documents\CaretElement.cs (2)
506: new MatrixTransform(targetGeometry.Transform.Value * transformToAdd.Value);
System\Windows\Documents\CompositionAdorner.cs (2)
97translation = new TranslateTransform(-(t.Value.OffsetX), -(t.Value.OffsetY));
System\Windows\Documents\FixedSOMElement.cs (4)
34_mat = trans.Value; 38_mat = Transform.Identity.Value; 49_mat = trans.Value; 53_mat = Transform.Identity.Value;
System\Windows\Documents\FixedSOMPageConstructor.cs (1)
293transform *= transPath.Value;
System\Windows\Documents\FixedSOMTextRun.cs (2)
135!(trans.Value.IsIdentity)) 137Matrix mat = trans.Value;
System\Windows\Documents\FixedTextBuilder.cs (3)
1016localTransform.Value * transform 1333if (t != null && !t.Value.IsIdentity) 1416if (trans != null && !trans.Value.IsIdentity)
System\Windows\Documents\TextStore.cs (1)
2852Matrix tf = t.Value;
System\Windows\FrameworkElement.cs (11)
4084_transform = new MatrixTransform(sourceTransform.Value); 4138Matrix trMatrix = layoutTransform.Value; 4266layoutTransform.Value); 4402Rect unclippedBoundsTransformed = Rect.Transform(new Rect(0, 0, unclippedDesiredSize.Width, unclippedDesiredSize.Height), ltd.Transform.Value); 4427Rect childBoundsTransformed = Rect.Transform(new Rect(0, 0, desiredSize.Width, desiredSize.Height), ltd.Transform.Value); 4733Rect inkRectTransformed = Rect.Transform(new Rect(0, 0, clippedInkSize.Width, clippedInkSize.Height), ltd.Transform.Value); 4910inkRectTransformed = Rect.Transform(new Rect(0, 0, inkSize.Width, inkSize.Height), ltd.Transform.Value); 4961Matrix m = ltd.Transform.Value; 4987slotClip.Transform = new MatrixTransform(slotClip.Transform.Value * rtlMirror.Value); 5242Rect inkRectTransformed = Rect.Transform(new Rect(inkSize), ltd.Transform.Value);
System\Windows\Shapes\Shape.cs (1)
757_renderedGeometry.Transform = new MatrixTransform(renderedTransform.Value * stretchMatrix);
System\Windows\Window.cs (1)
6313(renderTransformValue != null && renderTransformValue.Value.IsIdentity == true))
ReachFramework (53)
AlphaFlattener\BrushProxy.cs (21)
796mat = _brush.Transform.Value; 1114if (isOpaque && (_brush.Transform == null || Utility.IsScaleTranslate(_brush.Transform.Value))) 1196viewport.Transform(tileBrush.Transform.Value); 2206Matrix matA = brushA.Transform.Value; 2207Matrix matB = brushB.Transform.Value; 2341Matrix mat = (ib.Transform == null) ? Matrix.Identity : ib.Transform.Value; 2471Point sA = lbA.Transform.Value.Transform(lbA.StartPoint); 2472Point eA = lbA.Transform.Value.Transform(lbA.EndPoint); 2477Point sB = lbB.Transform.Value.Transform(lbB.StartPoint); 2478Point eB = lbB.Transform.Value.Transform(lbB.EndPoint); 2560if (!Utility.AreClose(rbA.Center * rbA.Transform.Value, rbB.Center * rbB.Transform.Value)) 2566if (!Utility.AreClose(rbA.GradientOrigin * rbA.Transform.Value, rbB.GradientOrigin * rbB.Transform.Value)) 2572if (Utility.AreClose(new Vector(Math.Abs(rbA.RadiusX), Math.Abs(rbA.RadiusY)) * rbA.Transform.Value, 2573new Vector(Math.Abs(rbB.RadiusX), Math.Abs(rbB.RadiusY)) * rbB.Transform.Value)) 2820if (brush.Transform != null && !Utility.IsValid(brush.Transform.Value)) 3573Matrix bm = b.Transform.Value; 3589Matrix mbm = mb.Transform.Value; 3999Matrix brushToWorldTransform = (brush.Transform == null) ? Matrix.Identity : brush.Transform.Value; 4181_trans = b.Transform.Value;
AlphaFlattener\DrawingContext.cs (2)
714line.StartPoint = geometry.Transform.Value.Transform(line.StartPoint); 715line.EndPoint = geometry.Transform.Value.Transform(line.EndPoint);
AlphaFlattener\Primitive.cs (4)
461drawingToWorldTransformHint.Prepend(dg.Transform.Value); 519primitive.Transform *= dg.Transform.Value; 817Matrix brushTransform = drawingBrush.Transform == null ? Matrix.Identity : drawingBrush.Transform.Value; 1429if (!empty && tb.Transform != null && !Utility.IsScaleTranslate(tb.Transform.Value))
AlphaFlattener\Utility.cs (12)
249return IsIdentity(transform.Value); 268mat = relative.Value; 285mat *= trans.Value; 299if ((trans1 == null) || trans1.Value.IsIdentity) 304if ((trans2 == null) || trans2.Value.IsIdentity) 309Matrix mat = trans1.Value; 311mat.Append(trans2.Value); 384if (t.Value.IsIdentity) 460if (geometry.Transform != null && !IsScaleTranslate(geometry.Transform.Value)) 730if (one is RectangleGeometry && one.Transform.Value.IsIdentity) 1788Matrix matrix = transform.Value; 2128if (drawing.Transform != null && !Utility.IsValid(drawing.Transform.Value))
Serialization\DrawingContextFlattener.cs (2)
86mat = transform.Value; 395visualTransform == null ? Matrix.Identity : visualTransform.Value,
Serialization\Manager\ReachSerializationUtils.cs (3)
922transform = new MatrixTransform(Matrix.Multiply(transform.Value, rootTransform.Value)); 925Matrix.Multiply(transform.Value,
Serialization\VisualSerializer.cs (5)
1196map = path.Transform.Value * map; 1389m = trans.Value; 1471p = PathGeometryToString(pg, trans.Value, forFill, forStroke); 1959Matrix mat = trans.Value; 2315Matrix mat = transform.Value;
Serialization\VisualTreeFlattener.cs (4)
455if (trans != null && !Utility.IsValid(trans.Value)) 532worldTransform.Prepend(trans.Value); 548clipToWorldSpace.Prepend(trans.Value); 733drawingToWorldTransform.Prepend(dg.Transform.Value);