Implemented interface member:
property
AnchorX
Microsoft.Maui.ITransform.AnchorX
1 write to AnchorX
Microsoft.Maui.Controls (1)
VisualElement\VisualElement.cs (1)
266
propertyChanged: (b, o, n) => { (((VisualElement)b).
AnchorX
, ((VisualElement)b).AnchorY) = (Point)n; });
8 references to AnchorX
Microsoft.Maui.Controls (6)
VisualElement\VisualElement.cs (6)
52
/// <summary>Bindable property for <see cref="
AnchorX
"/>.</summary>
53
public static readonly BindableProperty AnchorXProperty = BindableProperty.Create(nameof(
AnchorX
), 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);