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