Is it possible to create a storyboard where the second half repeates, but the first half doesn't? Or alternatively, can I cause one storyboard to start after another finishes, all in xaml?
|
|
|
|
|
|
|
I don't think you can work with animations just in XAML/Blend you need to begin them in code anyways.
But the code to start another animation just as the first one finishes is quite simple: First you subscribe to the Completed events in code:
Then in the respected eventhandlers if Storyboard1 finished you start storyboard2 and vice versa.
To add the eventhandlers you just have to type Storyboard.Completed += and then hit tab twice and it will generate the needed methods. |
||
|
|
