private void menuItem10_Click(object sender, System.EventArgs e)
{
if(MyPlayer.CurrentPlay > 0)
{
int play = MyPlayer.CurrentPlay - 1;
if(play == 0)play = MyPlayer.NumOfMusic;
MyPlayer.play(play);
listBox1.SelectedIndex = play - 1;
}
}
private void menuItem10_Click(object sender, System.EventArgs e)
{
if(MyPlayer.CurrentPlay > 0)
{
int play = MyPlayer.CurrentPlay - 1;
if(play == 0)play = MyPlayer.NumOfMusic;
MyPlayer.play(play);
listBox1.SelectedIndex = play - 1;
}
}