Ejemplo n.º 1
0
 /// <summary>
 /// Set the visibility state of the PlaybackMenu progress ring
 /// </summary>
 /// <param name="visible"></param>
 public async void SetPlaybackMenu(bool active)
 {
     await CoreApplication.MainView.CoreWindow.Dispatcher.RunAsync(CoreDispatcherPriority.Normal, () =>
     {
         if (PlaybackMenu != null)
         {
             PlaybackMenu.SetLoadingActive(active);
         }
     });
 }