Ejemplo n.º 1
0
 public static DoubleAnimationUsingKeyFrames AddDiscreteKeyFrame(this DoubleAnimationUsingKeyFrames doubleAnimation, double seconds, double value)
 {
     doubleAnimation.AddDiscreteKeyFrame(TimeSpan.FromSeconds(seconds), value);
     return(doubleAnimation);
 }