Implemented interface member:
property
ScaleX
Microsoft.Maui.ITransform.ScaleX
1 write to ScaleX
Microsoft.Maui.Controls (1)
ViewExtensions.cs (1)
229
return AnimateTo(view, view.ScaleX, scale, nameof(ScaleXTo), (v, value) => v.
ScaleX
= value, length, easing);
5 references to ScaleX
Microsoft.Maui.Controls (4)
RadioButton\RadioButton.cs (1)
454
border.SetBinding(ScaleXProperty, static (RadioButton rb) => rb.
ScaleX
, source: RelativeBindingSource.TemplatedParent);
ViewExtensions.cs (1)
229
return AnimateTo(view, view.
ScaleX
, scale, nameof(ScaleXTo), (v, value) => v.ScaleX = value, length, easing);
VisualElement\VisualElement.cs (2)
88
/// <summary>Bindable property for <see cref="
ScaleX
"/>.</summary>
89
public static readonly BindableProperty ScaleXProperty = BindableProperty.Create(nameof(
ScaleX
), typeof(double), typeof(VisualElement), 1d);
Microsoft.Maui.Controls.Compatibility (1)
Tizen\Renderers\VisualElementRenderer.cs (1)
861
var scaleX = Element.
ScaleX
* scale;