SoundPlayer not working when visual studio application is published

617 Views Asked by At

When I run in Microsoft Visual Studio, the sound works. However, after I published it, the sound doenst work. The sound properties are set to Content. Can someone help? Thanks

private void InitializeSound()
        {
            // Create an instance of the SoundPlayer class.
            player = new SoundPlayer(@"Sounds\sirenpolice3.wav");
        }

enter image description here

1

There are 1 best solutions below

2
On

try this sample

using (var player = new SoundPlayer(@"Sounds\sirenpolice3.wav"))
        {
            // Use PlaySync to load and then play the sound.
            // ... The program will pause until the sound is complete.
            player.PlaySync();
        }