1. 程式人生 > >每日站立會議 11。21

每日站立會議 11。21

今天的任務是寫出關於下一首的程式碼,然後除錯是否合格,修改毛病

private void button7_Click(object sender,System.EventArgs e)
{//下一首歌曲
if(this .listView1.Items.Count>0)
{
if(this.listView1.SelectedItems.Count>0)
{
int ipos=this.listView1.SelectedItems[0].Index;
if(ipos>0)
{
this.listView1.Items[ipos+1].Selected=true;
string         FileName=this.listView1.Items[ipos-1].SubItems[3].Text;
this.axMediaPlayer1.FileName=FileName;
this.axMediaPlayer1.Play();
}
else
{
MessageBox.Show("已經是第一首歌曲!","資訊提示",MessageBoxButtons.OK,MessageBoxIcon.Information);
}
}
}
else
{
MessageBox.Show("請選擇歌曲","資訊提示",MessageBoxButtons.OK,MessageBoxIcon.Information);
}
}