如何使用 MediaHistory.NowPlaying 属性获取 Windows Phone 7 中的当前播放列表
如何获取“音乐+视频”应用程序正在播放的当前播放列表。到目前为止我唯一能得到的是当前正在播放的歌曲,但用户将不知道下一首歌曲是什么或正在播放哪个列表。
我检查这个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一种方法是循环遍历 MediaPlayer .队列:
One way would be to loop through the MediaPlayer.Queue: