When I use the Play method with the SoundPlayer, my program exits and there is no sound playing. Please help me.
Code:
SoundPlayer player;
player = new SoundPlayer();
private void wii_WiimoteChanged(object s, EventArgs e)
{
if (wii.WiimoteState.GuitarState.FretButtonState.Green == true)
{
Play(1);
}
}
private void Play(int soundID)
{
player.SoundLocation = "sounds/" + soundID + ".wav";
player.Load();
}
private void player_LoadCompleted(object sender, AsyncCompletedEventArgs e)
{
player.Play();
}
http://msdn.microsoft.com/en-us/library/system.media.soundplayer.aspx
Init player
Load a file
On load finished play