这是点击节哪首歌
int index = listBox1.SelectedIndex;
listBox1.SelectedIndices.Clear();
index++;
if (index == listBox1.Items.Count)
{
index = 0;
}
listBox1.SelectedIndex = index;
musicPlayer.URL = listPath[index];
musicPlayer.Ctlcontrols.play();