private void pictureBox1_Click(object sender, EventArgs e)
{
    SoundPlayer ssp = new SoundPlayer();
    ssp.Stop();
    pctmutesplash.Image = Properties.Resources.unmuteicon;  
}
2

There are 2 best solutions below

2
On

Is it possible to create a loop where if i click on a picture box it will stop music, on click again play it.

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:

// SoundPlayer with the Sound we want to Play
SoundPlayer ssp = new SoundPlayer();

private void pictureBox1_Click(object sender, EventArgs e)
{
    if (pctmutesplash.Image == Properties.Resources.unmuteicon) {
        ssp.PlayLooping();
        pctmutesplash.Image = Properties.Resources.muteicon;
    }
    else {
        ssp.Stop();
        pctmutesplash.Image = Properties.Resources.unmuteicon;
    }
}
1
On

surely, just check if music is playing and then stop when the button is clicked. if there is no music playing, play it on the button click.