Using the BPC Transitionning page
To use the TransitionningPage, you must follow these steps :
- Create a new page, which will inherits the TransitionningPage class, instead of PhoneApplicationPage class.
- Your page base content must be a Grid
- In the constructor, after the call to InitializeComponent(), call the AfterInitialize(); method
public MainPage()
{
InitializeComponent();
AfterInitialize();
}
- When you want to navigate to an other page, use the Navigate() method from the TransitionningPage class, instead of the NavigationService