Reputation: 541
I've created an effect to flip my button. When i click it, it must load another screen. My problem is: I want silverlight to wait until the end of the "flipping" to begin loading the new screen.
If its possible, i would like to do it without using code-behind. Preferably on XAML.
Anyone can help me?
Upvotes: 0
Views: 103
Reputation: 12465
I'm guessing that you are using a StoryBoard to accomplish this. If that is the case then you can subscribe to the Completed event and change your page in the event handler.
Upvotes: 1