DataGridView.CurrentRow 属性 :获取包含当前单元格的行。只能为一行。
表示当前单元格所在的行的 DataGridViewRow,如果没有当前单元格,则为 null。
例:
DataGridView.CurrentRow.Cells[列index].Value取值。
int i = DataGridView1.CurrentRow.Index; 选择单元框所在行的行号。
DataGridView.SelectedRows 属性:获取用户选定的行的集合。可以为多行。
返回值类型:System.Windows.Forms.DataGridViewSelectedRowCollection
一个 DataGridViewSelectedRowCollection,包含用户选定的行。
例:
DataGridView.SelectedRows.Item[行index].Cells[列index].Value取值。
int i = DataGridView1.SelectedRows.Count; 选择的行数。
int j = DataGridView1.SelectedRows[i].index; 所选行的第i行的行号。