我正在播放这样的声音:
IsolatedStorageFile isoStore = IsolatedStorageFile.GetUserStoreForApplication();
IsolatedStorageFileStream stream;
stream = isoStore.OpenFile(fileName, FileMode.Open);
SoundEffect effect = SoundEffect.FromStream(stream);
FrameworkDispatcher.Update();
effect.Play();
有没有办法在播放完成时收到通知?我需要这个来在播放时禁用播放按钮,然后在完成后再次启用它。