コード例 #1
0
 private void subscriptionManager_OnPodcastChannelFinished(object source, SubscriptionManagerArgs e)
 {
     progressOverlay.Hide();
     if (NavigationService.CanGoBack)
     {
         NavigationService.GoBack();
     }
 }
コード例 #2
0
 private void subscriptionManager_OnGPodderImportFinished(object source, SubscriptionManagerArgs e)
 {
     progressOverlay.Hide();
     if (NavigationService.CanGoBack)
     {
         NavigationService.GoBack();
     }
     progressOverlay.Hide();
 }
コード例 #3
0
        private void subscriptionManager_OnPodcastChannelAddFinished(object source, SubscriptionManagerArgs e)
        {
            progressOverlay.Hide();

            if (NavigationService.CanGoBack)
            {
                NavigationService.Navigated += new System.Windows.Navigation.NavigatedEventHandler(NavigationService_Navigated);
                NavigationService.GoBack();
            }
        }
コード例 #4
0
 void PodcastListCategory_OnPodcastChannelAddFinishedWithError(object source, SubscriptionManagerArgs e)
 {
     progressOverlay.Visibility = System.Windows.Visibility.Collapsed;
 }
コード例 #5
0
        private void subscriptionManager_OnPodcastChannelAddFinishedWithError(object source, SubscriptionManagerArgs e)
        {
            progressOverlay.Hide();

            ToastPrompt toast = new ToastPrompt();

            toast.Title   = "Error";
            toast.Message = e.message;

            toast.Show();
        }
コード例 #6
0
 private void subscriptionManager_OnPodcastChannelAddStarted(object source, SubscriptionManagerArgs e)
 {
     ProgressText.Text = "Subscribing";
     progressOverlay.Show();
 }
コード例 #7
0
        private void subscriptionManager_OnExternalServiceImportFinishedWithError(object source, SubscriptionManagerArgs e)
        {
            progressOverlay.Hide();

            ToastPrompt toast = new ToastPrompt();

            toast.Title   = "Error";
            toast.Message = e.message;

            toast.Show();
        }
コード例 #8
0
 private void subscriptionManager_OnPodcastChannelStarted(object source, SubscriptionManagerArgs e)
 {
     progressOverlay.Show();
 }
コード例 #9
0
 private void subscriptionManager_OnGPodderImportFinished(object source, SubscriptionManagerArgs e)
 {
     progressOverlay.Hide();
     if (NavigationService.CanGoBack)
     {
         NavigationService.GoBack();
     }
     progressOverlay.Hide();
 }
コード例 #10
0
 private void subscriptionManager_OnGPodderImportStarted(object source, SubscriptionManagerArgs e)
 {
     ProgressText.Text = "Importing from gPodder...";
     progressOverlay.Show();
 }
コード例 #11
0
 void AddPodcastFromURL_OnPodcastChannelAddStarted(object source, SubscriptionManagerArgs e)
 {
     progressOverlay.Visibility = System.Windows.Visibility.Visible;
 }
コード例 #12
0
 void AddPodcastFromURL_OnPodcastChannelAddFinishedWithError(object source, SubscriptionManagerArgs e)
 {
     progressOverlay.Visibility = System.Windows.Visibility.Collapsed;
 }
コード例 #13
0
 private void subscriptionManager_OnPodcastChannelRequiresAuthentication(object source, SubscriptionManagerArgs e)
 {
     progressOverlay.Hide();
     NavigationService.Navigate(new Uri(string.Format("/Views/PodcastSubscriptionCredentials.xaml?url={0}", e.podcastFeedRSSUri.ToString()), UriKind.Relative));
 }
コード例 #14
0
 private void subscriptionManager_OnPodcastChannelAddStarted(object source, SubscriptionManagerArgs e)
 {
     ProgressText.Text = "Subscribing";
     progressOverlay.Show();
 }
コード例 #15
0
        private void subscriptionManager_OnPodcastChannelAddFinished(object source, SubscriptionManagerArgs e)
        {
            progressOverlay.Hide();

            if (NavigationService.CanGoBack)
            {
                NavigationService.Navigated += new System.Windows.Navigation.NavigatedEventHandler(NavigationService_Navigated);
                NavigationService.GoBack();
            }
        }
コード例 #16
0
 void PodcastListCategory_OnPodcastChannelAddStarted(object source, SubscriptionManagerArgs e)
 {
     progressOverlay.Visibility = System.Windows.Visibility.Visible;
 }
コード例 #17
0
 private void subscriptionManager_OnGPodderImportStarted(object source, SubscriptionManagerArgs e)
 {
     ProgressText.Text = "Importing from gPodder...";
     progressOverlay.Show();
 }
コード例 #18
0
 private void subscriptionManager_OnPodcastChannelRequiresAuthentication(object source, SubscriptionManagerArgs e)
 {
     progressOverlay.Hide();
     NavigationService.Navigate(new Uri(string.Format("/Views/PodcastSubscriptionCredentials.xaml?url={0}", e.podcastFeedRSSUri.ToString()), UriKind.Relative));
 }
コード例 #19
0
        private void subscriptionManager_OnGPodderImportFinishedWithError(object source, SubscriptionManagerArgs e)
        {
            progressOverlay.Hide();

            ToastPrompt toast = new ToastPrompt();
            toast.Title = "Error";
            toast.Message = e.message;

            toast.Show();
        }
コード例 #20
0
 void ImportPodcastViaOPML_OnPodcastChannelAddStarted(object source, SubscriptionManagerArgs e)
 {
     progressOverlay.Visibility = System.Windows.Visibility.Visible;
 }