C#之DataGridView判断用户选择的是哪一行..._string

 

 

//判断用户选择的是哪一行,注意行数从0开始... 
int row = this.dataGridView.CurrentRow.Index;
String str = String.Format("你当前选择的是第{0}行",row+1);
MessageBox.Show(str);