2013-05-12 89 views

回答

1

沒有內置的功能在Windows Phone的操控播放列表8.然而, 您可以創建要播放的歌曲列表:

Collection<string> songs = new Collection<string>(); 
    songs.Add("http://freedownloads.last.fm/download/86983340/Petrolero.mp3"); 

那你必須控制你的「播放列表」手動:

foreach(var song in songs) 
     MediaPlayer.Play(Song.FromUri("Song name", new Uri(song))); 
0

不,不可能在Windows Phone上創建播放列表。 你可以在user voice上投票。