我想在Windows Phone应用程序中编写一个方法来暂停当前播放的歌曲并在暂停时恢复该歌曲。
像播放/暂停按钮一样
实现这一目标的最简单方法是什么?
答案 0 :(得分:1)
如果你想在媒体库中存储的歌曲的帮助下完成它,那么在MedaPlayer的帮助下很容易
使用此命名空间
using Microsoft.Xna.Framework.Media;
获取媒体库中的所有歌曲
MediaLibrary mLibrary = new MediaLibrary();
SongCollection songs= mLibrary.Songs;
播放特定歌曲
MediaPlayer.Play(songs, int index);
暂停媒体播放器
MediaPlayer.Pause();
继续播放歌曲
MediaPlayer.Play(songs);
一个简单的demo。