/// <summary>
 /// If the subreddits change update the UI
 /// </summary>
 /// <param name="sender"></param>
 /// <param name="e"></param>
 private async void SubredditMan_OnSubredditsUpdated(object sender, Managers.OnSubredditsUpdatedArgs e)
 {
     await global::Windows.ApplicationModel.Core.CoreApplication.MainView.CoreWindow.Dispatcher.RunAsync(CoreDispatcherPriority.Normal, () =>
     {
         SetupSubredditLists();
     });
 }
Beispiel #2
0
 private void SubredditMan_OnSubredditsUpdated(object sender, Managers.OnSubredditsUpdatedArgs e)
 {
     m_takeChangeAction = false;
     SetSubredditList();
     m_takeChangeAction = true;
 }