1
我在玩一個聲音這樣得到通知:WP7播放聲音 - 當聲音播放完畢
IsolatedStorageFile isoStore = IsolatedStorageFile.GetUserStoreForApplication();
IsolatedStorageFileStream stream;
stream = isoStore.OpenFile(fileName, FileMode.Open);
SoundEffect effect = SoundEffect.FromStream(stream);
FrameworkDispatcher.Update();
effect.Play();
有當播放結束時獲取通知的方式?我需要這個來在播放時禁用播放按鈕,然後在完成時再次啓用它。