Implemented interface member:
property
Rotation
Microsoft.Maui.ITransform.Rotation
1 write to Rotation
Microsoft.Maui.Controls (1)
ViewExtensions.cs (1)
158
return AnimateTo(view, view.Rotation, rotation, nameof(RotateTo), (v, value) => v.
Rotation
= value, length, easing);
6 references to Rotation
Microsoft.Maui.Controls (5)
RadioButton\RadioButton.cs (1)
452
border.SetBinding(RotationProperty, static (RadioButton rb) => rb.
Rotation
, source: RelativeBindingSource.TemplatedParent);
ViewExtensions.cs (2)
122
return view.RotateTo(view.
Rotation
+ drotation, length, easing);
158
return AnimateTo(view, view.
Rotation
, rotation, nameof(RotateTo), (v, value) => v.Rotation = value, length, easing);
VisualElement\VisualElement.cs (2)
76
/// <summary>Bindable property for <see cref="
Rotation
"/>.</summary>
77
public static readonly BindableProperty RotationProperty = BindableProperty.Create(nameof(
Rotation
), typeof(double), typeof(VisualElement), default(double));
Microsoft.Maui.Controls.Compatibility (1)
Tizen\Renderers\VisualElementRenderer.cs (1)
841
var rotationZ = Element.
Rotation
;