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?