3

我正在使用 BackgroundAudioPlayer 播放存储在隔离存储中的音频文件。

用户可能想要删除这些文件之一。如果文件正在播放,则文件被 BackgroundAudioPlayer 锁定。只有在曲目播放完毕后才能删除文件。

即使我在 BackgroundAudioPlayer 上调用 Stop 函数,文件仍然被锁定。

如何让 BackgroundAudioPlayer 解除锁定?

4

2 回答 2

1

To release the audio file, you have to call the Close method of the BackgroundAudioPlayer.

http://msdn.microsoft.com/en-us/library/microsoft.phone.backgroundaudio.backgroundaudioplayer.close(v=vs.92).aspx

于 2012-09-21T14:51:33.573 回答
1

尝试将Track属性设置为空。

于 2012-09-21T12:29:22.427 回答