1

I'm following this Hands on Lab

And then I've a small question: how to turn off this program completely? I tried: BackgroundAudioPlayer.Instance.Close(); but it stills running. I wanna remove this control when program is turned off.

See this picture. thanks so much :)

4

2 回答 2

0

BackgroundAudioPlayer.Instance.Stop()?

此外,这个3 部分系列非常好。

于 2012-06-18T03:09:26.060 回答
0

我使用BackgroundAudioPlayer.Instance.Close()并且代理已关闭

关闭播放器并移除为其保留的所有资源,包括当前的 AudioTrack。

您可以看到在OnPlayStateChanged事件处理程序中触发了 Shut down 事件

此外,在输出窗口中看到时,后台任务被终止

于 2012-10-09T10:24:58.660 回答