====== 024 トランジションアニメーションによるページ遷移 ======
===== 概要 =====
トランジションを使用してiPhoneでよく見る横スライドでのページ遷移を実現します。
==== MainPage.xaml ====
==== App.xaml.cs ====
private void InitializePhoneApplication()
{
if (phoneApplicationInitialized)
return;
// Create the frame but don't set it as RootVisual yet; this allows the splash
// screen to remain active until the application is ready to render.
// RootFrame = new PhoneApplicationFrame();
RootFrame = new TransitionFrame(); // トランジションアニメーションを使用する。
RootFrame.Navigated += CompleteInitializePhoneApplication;
// Handle navigation failures
RootFrame.NavigationFailed += RootFrame_NavigationFailed;
// Ensure we don't initialize again
phoneApplicationInitialized = true;
}