Vinicius
Vinicius

Reputation: 541

Wait effect end to load screen

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

Answers (1)

Shawn Kendrot
Shawn Kendrot

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

Related Questions