在 Windows Phone 7 中打开或浏览 mp3 文件
我正在尝试为 Windows Phone 7 创建一个 mp3 播放器...我如何创建一个打开文件对话框或其他允许我访问手机上的文件以便我可以使用我的应用程序播放它们的东西”???
EG:
假设我的 SD 卡中有一个文件夹...我如何浏览到该文件夹,以便我可以将该文件夹中的歌曲导入到我的应用程序中的播放列表中...
im trying to create a mp3 player for windows phone 7...how do i create a open file dialog or something that will allow me to access my files on the phone so that i can play them with my app"???
EG:
say i have a folder in my sd card...how do i browse to that folder so that i can imports the songs from that folder into a playlist in my app...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
WP7 没有标准的打开文件对话框。 (某些选择器除外。)
如果您想这样做,您必须自己创建对话框。您可以通过 MediaLibrary 对象。 (添加对 Microsoft.Xna.Framework.dll 的引用以从 Silverlight 中使用它。)
然后,您将可以访问专辑、艺术家、播放列表、歌曲等的列表(集合)。
如果您想播放保存在isolatedStorage 中的曲目,您可以自己直接访问这些曲目。
There are no standard open file dialogs for WP7. (some choosers excepted.)
If you want to do this you'll have to create the dialog yourself. You can get the details of the songs saved into the Music&Video hub via the MediaLibrary object. (Add a reference to Microsoft.Xna.Framework.dll to use this from Silverlight.)
You'll then have access to lists (collections) of Albums, artists, playlists, songs, etc.
If you want to play tracks you've save in IsolatedStorage you can access these directly yourself.