2009-08-20 25 views

Respuesta

13

Para la reproducción de sonido, simplemente, sin interacción puede utilizar System.Media.SoundPlayer:

System.Media.SoundPlayer player = new System.Media.SoundPlayer(); 
player.SoundLocation = "soundFile.wav"; 
player.Play(); 
Cuestiones relacionadas