Implemented interface member:
property
Scale
Microsoft.Maui.ITransform.Scale
1 write to Scale
Microsoft.Maui.Controls (1)
ViewExtensions.cs (1)
211 return AnimateTo(view, view.Scale, scale, nameof(ScaleTo), (v, value) => v.Scale = value, length, easing);
8 references to Scale
Microsoft.Maui.Controls (7)
Platform\GestureManager\GesturePlatformManager.iOS.cs (1)
293 startingScale = view.Scale;
RadioButton\RadioButton.cs (1)
453 border.SetBinding(ScaleProperty, static (RadioButton rb) => rb.Scale, source: RelativeBindingSource.TemplatedParent);
ViewExtensions.cs (2)
140 return view.ScaleTo(view.Scale + dscale, length, easing); 211 return AnimateTo(view, view.Scale, scale, nameof(ScaleTo), (v, value) => v.Scale = value, length, easing);
VisualElement\VisualElement.cs (3)
85 /// <summary>Bindable property for <see cref="Scale"/>.</summary> 86 public static readonly BindableProperty ScaleProperty = BindableProperty.Create(nameof(Scale), typeof(double), typeof(VisualElement), 1d); 812 /// <para><see cref="Scale"/> is applied relative to <see cref="AnchorX" /> and <see cref="AnchorY" />.</para>
Microsoft.Maui.Controls.Compatibility (1)
Tizen\Renderers\VisualElementRenderer.cs (1)
860 var scale = Element.Scale;