gpt4 book ai didi

windows-phone-7 - 如何使用 Media History.Now Playing 属性获取 Windows Phone 7 中的当前播放列表

转载 作者:行者123 更新时间:2023-12-04 06:17:59 25 4
gpt4 key购买 nike

如何获取“音乐+视频”应用程序正在播放的当前播放列表。到目前为止,我唯一能得到的是当前正在播放的歌曲,但用户将不知道下一首歌曲是什么或正在播放什么列表。

我检查这个 http://msdn.microsoft.com/en-us/library/ff769558%28VS.92%29.aspx但它是关于更新集线器。我想更新我的应用程序.....

例如,如果我让用户选择在 Hub 中播放第三张专辑,我会这样做:

mySongCollection = library.Albums[3].Songs;



并更新我使用的列表:

listbox.Itemssource = mySongCollection;



如何从集线器获取当前播放列表到 mySongCollection 列表?

最佳答案

一种方法是循环遍历 MediaPlayer.Queue :

for(int i = 0; i < MediaPlayer.Queue.Count; i++)
{
Debug.WriteLine(MediaPlayer.Queue[i].Artist.Name);

//to add the song to the listbox
playListLb.Items.Add(MediaPlayer.Queue[i]);
}

关于windows-phone-7 - 如何使用 Media History.Now Playing 属性获取 Windows Phone 7 中的当前播放列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6990637/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com