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

An animation that interpolates a double-typed property from one value to another.
Inheritance: TweenAnimation
ファイルを表示 Open project: nikhilk/silverlightfx Class Usage Examples

Public Methods

Method Description
DoubleAnimation ( DependencyObject o, DependencyProperty dp, System.TimeSpan duration, double targetValue ) : System

Initializes an instance of an DoubleAnimation.

Protected Methods

Method Description
PerformTweening ( double frame ) : void

Method Details

DoubleAnimation() public method

Initializes an instance of an DoubleAnimation.
public DoubleAnimation ( DependencyObject o, DependencyProperty dp, System.TimeSpan duration, double 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 double The value to interpolate to.
return System

PerformTweening() protected method

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