如何使用 MediaHistory.NowPlaying 属性获取 Windows Phone 7 中的当前播放列表

发布于 2024-11-28 13:49:41 字数 540 浏览 0 评论 0原文

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

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

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

mySongCollection = 库.Albums[3].Songs;

并更新我的列表,我使用:

listbox.Itemssource = mySongCollection;

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

how can I get the current playing list that is playing by "music + video" app. The only thing I can get so far is the current playing song, but users will have no idea what is the next song or what list is being played.

I check this http://msdn.microsoft.com/en-us/library/ff769558%28VS.92%29.aspx but it's about updating the hub. I want to update my app.....

For example, if I let's user choose to play 3rd Album in the Hub, I do it like this:

mySongCollection = library.Albums[3].Songs;

and to update my lists I use:

listbox.Itemssource = mySongCollection;

how can I get the current playing list from hub to mySongCollection list?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

暮光沉寂 2024-12-05 13:49:41

一种方法是循环遍历 MediaPlayer .队列

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]);
}

One way would be to loop through the 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]);
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文