How would I check the status of a storyboard?
Example:
if (storyboard.Completed += true) // ???
{
}
(This code does not work, for obvious reasons.)
|
How would I check the status of a storyboard? Example:
(This code does not work, for obvious reasons.) |
|||||||||
|
|
Just hook the |
|||||
|
|
how about creating a boolean variable (e.g. IsCompleted) and set it to true in the Completed callback? |
|||
|
|