Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How would I check the status of a storyboard?

Example:

if (storyboard.Completed += true) // ???
{
}

(This code does not work, for obvious reasons.)

share|improve this question
1  
Back-ticks for inline code; New paragraph and 4-space indent for code blocks (select code block and press the "{}" button in the editor). Happy SO'ing. – user166390 Apr 14 '11 at 1:15
Thanks! I always wondered why the code editor hated me... – JavaAndCSharp Apr 15 '11 at 1:39
just wanted to check in to see if the below answers your question. – Todd Main May 3 '11 at 9:42

2 Answers

up vote 4 down vote accepted

Just hook the Completed event and when your code runs in there, the storyboard will have been completed. See: http://msdn.microsoft.com/en-us/library/system.windows.media.animation.timeline.completed(VS.95).aspx#Y565

share|improve this answer
How would I use this? (for instance, storyboard.Completed += Completed;) – JavaAndCSharp Apr 15 '11 at 1:52
That's right. Check out the sample on samples.msdn.microsoft.com/Silverlight/SampleBrowser/index.htm#/… (click the "View Sample Source Code" button and then the C# button that comes up on that page at the top). – Todd Main Apr 15 '11 at 4:19

how about creating a boolean variable (e.g. IsCompleted) and set it to true in the Completed callback?

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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