Пример #1
0
 void GetPlayListData()
 {
     IsBusy = true;
     Task.Run(() => {
         var s = CloudMusicApiHelper.PlayListDetial(playlistId);
         if (s != null)
         {
             if (s.code == 200)
             {
                 MusicPlayList = s;
                 if (string.IsNullOrWhiteSpace(BgPic))
                 {
                     BgPic = s.playlist.coverImgUrl;
                 }
             }
         }
         IsBusy = false;
     });
 }