C# Class System.Windows.Media.Glitz.ColorAnimation

An animation that interpolates a Color-typed property from one value to another.
Inheritance: TweenAnimation
Exibir arquivo Open project: nikhilk/silverlightfx

Public Methods

Method Description
ColorAnimation ( DependencyObject o, DependencyProperty dp, System.TimeSpan duration, Color targetValue ) : System

Initializes an instance of an ColorAnimation.

Protected Methods

Method Description
PerformTweening ( double frame ) : void

Method Details

ColorAnimation() public method

Initializes an instance of an ColorAnimation.
public ColorAnimation ( DependencyObject o, DependencyProperty dp, System.TimeSpan duration, Color targetValue ) : System
o System.Windows.DependencyObject The object to animate.
dp System.Windows.DependencyProperty The property on the object to animate.
duration System.TimeSpan The time span over which the animation performs the interpolation.
targetValue Color The value to interpolate to.
return System

PerformTweening() protected method

protected PerformTweening ( double frame ) : void
frame double
return void