我有一些代码,当我运行它时,会弹出一个异常。我想解决这个问题。它一直在吃我的心。任何帮助表示赞赏。
private void StudentListView_DoubleClick(object sender, EventArgs e)
{
ListViewItem selectedListViewCell=StudentListView.SelectedItems[0];//
//problem is about the line above. I have an argument out of range exception here.
//it says that InvalidArgument=Value of '0' is not valid for 'index'.
selectedStudent = (Student)selectedListViewCell.Tag;
SetDataInTextBoxes();
selectedRowIndex=StudentListView.SelectedIndices[0];
SaveButton.Visible = false;
CancelButton.Visible = false;
UpdateButton.Visible = false;
}