Class AnimateProgressColor
- Namespace
- AlohaKit.Animations
- Assembly
- AlohaKit.Animations.dll
Represents a behavior that animates the transition of a color property from one value to another based on the progress of an animation.
public class AnimateProgressColor : AnimationProgressBaseBehavior, INotifyPropertyChanged
- Inheritance
-
AnimateProgressColor
- Implements
- Inherited Members
Fields
FromProperty
Bindable property for specifying the starting color of the animation.
public static readonly BindableProperty FromProperty
Field Value
ToProperty
Bindable property for specifying the ending color of the animation.
public static readonly BindableProperty ToProperty
Field Value
Properties
From
Gets or sets the starting color of the animation.
public Color From { get; set; }
Property Value
To
Gets or sets the ending color of the animation.
public Color To { get; set; }
Property Value
Methods
OnUpdate()
Performs the animation update logic. This method must be implemented by derived classes.
protected override void OnUpdate()