private void pictureBox1_Click(object sender, EventArgs e)
{
SoundPlayer ssp = new SoundPlayer();
ssp.Stop();
pctmutesplash.Image = Properties.Resources.unmuteicon;
}
Is it possible to create a loop where if i click on a picture box it will stop music, on click again play it
74 Views Asked by RyanJM At
2
Only partially the
SoundPlayer
is really limited and doesn't allow pausing, resuming or even muting songs. So we need to use.Stop()
and .Play()
each time we want to "pause" the track.We can also use
.PlayLooping()
to ensure that the track always plays until we "forcefully" stop it with the button press.Example: