7 writes to Value
Microsoft.Maui.Controls (7)
Shapes\CompositeTransform.cs (1)
157 Value = xformGroup.Value;
Shapes\MatrixTransform.cs (1)
26 Value = Matrix;
Shapes\RotateTransform.cs (1)
76 Value = new Matrix(cos, sin, -sin, cos, CenterX * (1 - cos) + CenterY * sin, CenterY * (1 - cos) - CenterX * sin);
Shapes\ScaleTransform.cs (1)
84 Value = new Matrix(ScaleX, 0, 0, ScaleY, CenterX * (1 - ScaleX), CenterY * (1 - ScaleY));
Shapes\SkewTransform.cs (1)
91 Value = new Matrix(1, tanY, tanX, 1, -CenterY * tanX, -CenterX * tanY);
Shapes\TransformGroup.cs (1)
73 Value = matrix;
Shapes\TranslateTransform.cs (1)
51 Value = new Matrix(1, 0, 0, 1, X, Y);
6 references to Value
Microsoft.Maui.Controls (5)
Handlers\Shapes\Path\PathHandler.iOS.cs (1)
29 Matrix? matrix = path.RenderTransform?.Value;
Shapes\CompositeTransform.cs (1)
157 Value = xformGroup.Value;
Shapes\Transform.cs (2)
8 /// <summary>Bindable property for <see cref="Value"/>.</summary> 10 BindableProperty.Create(nameof(Value), typeof(Matrix), typeof(Transform), new Matrix());
Shapes\TransformGroup.cs (1)
71 matrix = Matrix.Multiply(matrix, child.Value);
Microsoft.Maui.Controls.Compatibility (1)
Tizen\Extensions\TransformExtensions.cs (1)
15 Matrix matrix = transform.Value;