1

I'm using the AGFX framework in my WP7 app. To use it I need to set the following in my App.xaml.cs

RootFrame = new PhoneApplicationFrameEx();

Now I want to add the page transitions from Silverlight Toolkit for WP7. To make them work also I need to change my RootFrame as an specific element

RootFrame = new Microsoft.Phone.Controls.TransitionFrame();

How should I solve this problem? I cannot use both...or there is any way?

blackjid
  • 1,571
  • 16
  • 23

1 Answers1

0

You can't possibly assign both to the same RootFrame. Still, the source code of these two classes is available, so you can create a frame inheriting from PhoneApplicationFrameEx and add the logic from the TransitionFrame (or the other way around).

Kevin Gosse
  • 38,392
  • 3
  • 78
  • 94