How to stop an animation in C# / WPF?

前端 未结 8 827
爱一瞬间的悲伤
爱一瞬间的悲伤 2020-11-28 08:54

I have something like this:

barProgress.BeginAnimation(RangeBase.ValueProperty, new DoubleAnimation(
    barProgress.Value, dNextProgressValue,
    new Duration(T         


        
8条回答
  •  天涯浪人
    2020-11-28 09:50

    There are two ways to stop a BeginAnimation. The first is to call BeginAnimation again with the second parameter set to null. This will remove all animations on the property and revert the value back to its base value.

    Depending on how you are using that value this may not be the behavior you want. The second way is to set the animations BeginTime to null then call BeginAnimation with it. This will remove that specific animation and leave the value at its current position.

    DoubleAnimation myAnimation = new Animation();
    // Initialize animation
    ...
    
    // To start
    element.BeginAnimation(Property, myAnimation);
    
    // To stop and keep the current value of the animated property
    myAnimation.BeginTime = null;
    element.BeginAnimation(Property, myAnimation);
    

提交回复
热议问题