I am using the Silverlight VisualStateManager.GoToState
method to transition my control from one state to another. This all works fine and the transition animations works great. But I want to know when the transition has completed so I can then start other actions in my code. Is there an event or other mechanism I can use to discover when the transition to another state has completed?
Asked
Active
Viewed 1,145 times
3

Martin Liversage
- 104,481
- 22
- 209
- 256

Phil Wright
- 22,580
- 14
- 83
- 137
1 Answers
6
The control immediately goes to the state given. The animations that this triggers can be thought of as a side-effect. You can determine when a triggered timeline is complete via its Completed event:
Colin E.

ColinE
- 68,894
- 15
- 164
- 232