vote up 5 vote down star

What is the proper way to stop and restart a storyboard from .net code?

I'm trying ...

myStory.Stop(this);

Expecting that a subsequent call to .Begin(this); would restart from the timeline at zero, but instead, the storyboard picks up right where it was stopped.

I have tried

.Remove(this);

and I tried

.Seek(TimeSpan.Zero);

which also didn't work.

More details ... Here is my storyboard sample.

<Storyboard x:Key="overlay">
    <DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="textone" Storyboard.TargetProperty="(UIElement.Opacity)">
        <SplineDoubleKeyFrame KeyTime="00:00:03.0" Value="0"/>
        <SplineDoubleKeyFrame KeyTime="00:00:03.0" Value="1"/>
        <SplineDoubleKeyFrame KeyTime="00:00:06.0" Value="1"/>
        <SplineDoubleKeyFrame KeyTime="00:00:06.0" Value="0"/>
    </DoubleAnimationUsingKeyFrames>
    <DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="texttwo" Storyboard.TargetProperty="(UIElement.Opacity)">
        <SplineDoubleKeyFrame KeyTime="00:00:07.0" Value="0"/>
        <SplineDoubleKeyFrame KeyTime="00:00:07.0" Value="1"/>
        <SplineDoubleKeyFrame KeyTime="00:00:10.0" Value="1"/>
        <SplineDoubleKeyFrame KeyTime="00:00:10.0" Value="0"/>
    </DoubleAnimationUsingKeyFrames>
</Storyboard>

So the text in the textone runs, and if you close the screen, and return to the screen quickly, the texttwo, actually plays over a newly started storyboard. So the original (from the first screen) storyboard is still around and playing, even though I've removed, and stopped it.

flag

67% accept rate
maybe it's my setup. Here's a little more info. I have a baseclass with a storyOverlay storyboard property. In the ctor of a child class, i do a storyOverlay = TryFindResource("storyId") as Storyboard; then later, i'm checking if storyOVerlay != null; { storyOverlay.Remove(this); } Does that change anything? – ScottCate May 7 at 16:12

3 Answers

vote up 3 vote down check

What about using Storyboard.Seek(TimeSpan.Zero)? Similar to seeking in a Stream, this should bring you back to the beginning of the animation.

I commented that you should also make sure that the IsControllable property is set to true. Keep that in mind!

Storyboard.Seek method

link|flag
Also, need to make sure that IsControllable is set to true and the appropriate containing object is marked. – Rob May 7 at 21:08
Thank you! This is EXACTLY what I was after!!!! – ScottCate May 7 at 21:16
vote up 0 vote down

Sorry Scott, I wasn't paying attention. Did you try to set the FillBehavior on the Storyboard. Set the FillBehavior to Stop resets the animation. Not sure why Stop doesn't do it though...

link|flag
vote up 2 vote down

You would need to do myStory.Remove(this) before calling myStory.Begin(this) to have it start over from scratch. This is because calling Storyboard::Stop just stops the animation clocks, but leaves them intact. A subsequent call to Begin, will simply act as a resume. I agree that this is somewhat counterintuitive, however if you read the documentation ClockController::Stop, you will see the following in the remarks:

This method changes the target clock's CurrentState to Stopped.

A Stopped clock can be restarted by using the Begin, Seek, or SeekAlignedToLastTick method.

link|flag
Sounds about right to me. – Mike Brown May 7 at 1:16
this is still not working for me. after I both myStory.Remove(this) and myStory.Stop(this), if the scene comes back on the screen, before the storyboard has finished, the last (maybe better to call it Original) storyboard is still playing. – ScottCate May 7 at 16:10

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.