Esempio n. 1
0
 /// <summary>
 /// If the subreddits change update the UI
 /// </summary>
 /// <param name="sender"></param>
 /// <param name="e"></param>
 private async void SubredditMan_OnSubredditsUpdated(object sender, BaconBackend.Managers.SubredditsUpdatedArgs e)
 {
     await Windows.ApplicationModel.Core.CoreApplication.MainView.CoreWindow.Dispatcher.RunAsync(CoreDispatcherPriority.Normal, () =>
     {
         SetupSubredditLists();
     });
 }
Esempio n. 2
0
 private void SubredditMan_OnSubredditsUpdated(object sender, BaconBackend.Managers.SubredditsUpdatedArgs e)
 {
     _mTakeChangeAction = false;
     SetSubredditList();
     _mTakeChangeAction = true;
 }