/// <summary>
        ///		別のページから遷移した時に実行します。
        /// </summary>
        /// <param name="e">イベント引数</param>
        protected override void OnNavigatedTo(NavigationEventArgs e)
        {
            base.OnNavigatedTo(e);

            // SplitView内のFrameのトップページに、すぱこーRSSフィード一覧をセットします。
            SpacomicContentFrame.Navigate(typeof(SpacomicRSSCollectionView));

            if (e.NavigationMode == NavigationMode.New)
            {
                // RSSフィードを取得するコマンドを実行します。
                spacomicMainViewModel.GetRSS.Execute(false);
            }
        }
 /// <summary>
 ///		設定ボタンをクリックした時に実行します。
 /// </summary>
 private void SwitchSettingAboutButton_Click(object sender, RoutedEventArgs e)
 {
     SpacomicContentFrame.Navigate(typeof(AppSettingView));
     HamburgerButton.IsChecked = false;
 }
 /// <summary>
 ///		使い方ガイドボタンをクリックした時に実行します。
 /// </summary>
 private void SwitchUserGuideButton_Click(object sender, RoutedEventArgs e)
 {
     SpacomicContentFrame.Navigate(typeof(UserGuideView));
     HamburgerButton.IsChecked = false;
 }