Table of Contents

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

BindableProperty

ToProperty

Bindable property for specifying the ending color of the animation.

public static readonly BindableProperty ToProperty

Field Value

BindableProperty

Properties

From

Gets or sets the starting color of the animation.

public Color From { get; set; }

Property Value

Color

To

Gets or sets the ending color of the animation.

public Color To { get; set; }

Property Value

Color

Methods

OnUpdate()

Performs the animation update logic. This method must be implemented by derived classes.

protected override void OnUpdate()