Implemented interface member:
property
AnchorY
Microsoft.Maui.ITransform.AnchorY
1 write to AnchorY
Microsoft.Maui.Controls (1)
VisualElement\VisualElement.cs (1)
266 propertyChanged: (b, o, n) => { (((VisualElement)b).AnchorX, ((VisualElement)b).AnchorY) = (Point)n; });
8 references to AnchorY
Microsoft.Maui.Controls (6)
VisualElement\VisualElement.cs (6)
55 /// <summary>Bindable property for <see cref="AnchorY"/>.</summary> 56 public static readonly BindableProperty AnchorYProperty = BindableProperty.Create(nameof(AnchorY), typeof(double), typeof(VisualElement), .5d); 780 /// <remarks>Rotation is applied relative to <see cref="AnchorX" /> and <see cref="AnchorY" />.</remarks> 790 /// <remarks>Rotation is applied relative to <see cref="AnchorX" /> and <see cref="AnchorY" />.</remarks> 800 /// <remarks>Rotation is applied relative to <see cref="AnchorX" /> and <see cref="AnchorY" />.</remarks> 812 /// <para><see cref="Scale"/> is applied relative to <see cref="AnchorX" /> and <see cref="AnchorY" />.</para>
Microsoft.Maui.Controls.Compatibility (2)
Tizen\Renderers\VisualElementRenderer.cs (2)
883 if (init && Element.AnchorX == 0.5 && Element.AnchorY == 0.5) 886 NativeView.PivotPoint = new Position((float)Element.AnchorX, (float)Element.AnchorY, 0);