//判断用户选择的是哪一行,注意行数从0开始...


            int row = this.dataGridView.CurrentRow.Index;
            String str = String.Format("你当前选择的是第{0}行",row+1);
            MessageBox.Show(str);


本文转载:CSDN博客