Example #1
0
        public DoubleAnimationUsingKeyFrames()
        {
            this.animationOperations = DoubleAnimationOperations.Default;
            this.isAccumulable       = true;

            KeyFrames = new FreezableCollection <DoubleKeyFrame>();
            KeyFrames.SetInheritanceParent(this);
        }
        public KeyFramesAnimationTimeline(IAnimationOperations <T> animationOperations, bool isAccumulable)
        {
            this.animationOperations = animationOperations;
            this.isAccumulable       = isAccumulable;

            KeyFrames = new FreezableCollection <KeyFrame <T> >();
            KeyFrames.SetInheritanceParent(this);
        }
        public ThicknessAnimationUsingKeyFrames()
        {
            this.animationOperations = ThicknessAnimationOperations.Default;
            this.isAccumulable       = true;

            KeyFrames = new FreezableCollection <ThicknessKeyFrame>();
            KeyFrames.TrySetContextParent(this);
        }
Example #4
0
 public DoubleAnimation()
 {
     this.animationOperations = DoubleAnimationOperations.Default;
     this.isAccumulable       = true;
 }
Example #5
0
 public ThicknessAnimation()
 {
     this.animationOperations = ThicknessAnimationOperations.Default;
     this.isAccumulable       = true;
 }
 public TransitionAnimationTimeline(IAnimationOperations <T> animationOperations, bool isAccumulable)
 {
     this.animationOperations = animationOperations;
     this.isAccumulable       = isAccumulable;
 }
Example #7
0
 public EasingKeyFrame(IAnimationOperations <T> animationOperations)
 {
     this.animationOperations = animationOperations;
 }
Example #8
0
 public LinearKeyFrame(IAnimationOperations <T> animationOperations)
 {
     this.animationOperations = animationOperations;
 }
Example #9
0
 public DiscreteKeyFrame(IAnimationOperations <T> animationOperations)
 {
     this.animationOperations = animationOperations;
 }
Example #10
0
 public RectAnimation()
 {
     this.animationOperations = RectAnimationOperations.Default;
     this.isAccumulable       = true;
 }
Example #11
0
 public ColorAnimation()
 {
     this.animationOperations = ColorAnimationOperations.Default;
     this.isAccumulable       = true;
 }