DataGridView的几个基本操作:
1.获取某个(指定的)单元格的值:
dataGridView1.Row[i].Cells[j].Value;
2.获取选中的总行数:
dataGridView1.SelectedRows.Count;
3.获取当前选中行的索引:
dataGridView1.CurrentRow.Index;
4.获取当前选中单元格的值:
dataGridView1.CurrentCell.Value;
5.获取选中行的数据
string[] str = new string[dataGridView.Rows.Count];
for(int i;i<dataGridView1.Rows.Count;i++)
{
if(dataGridView1.Rows[i].Selected == true)
{
str[i] = dataGridView1.Rows[i].Cells[1].Value.ToString();
}
}
6.获取选中行的某个数据
int a = dataGridView1.SelectedRows.Index;
dataGridView1.Rows[a].Cells[index].Value;
7.获取某个(指定的)单元格的值:
dataGridView1.Rows[i].Cells[j].Value; Row[i]
8.获取某行的索引值
int a=dataGridView1.CurrentRow.Index;
9.获取当前选中的行
selectedRows[0]
10.获取当前选择单元内容
DataGridView1.SelectedCells(0).Value.ToString
11.获取当前选择单元第N列内容
DataGridView1.Rows(e.RowIndex).Cells(n).Value.ToString()
12.获取当前活动的单元格的行的索引
Datagridview1.CurrentCell.RowIndex
13.选中行的集合
Datagridview1.SelectedRows
14.选中列的集合
Datagridview1.SelectedColumns
15.选中单元格的集合
Datagridview1.SelectedCells
16.获取包含当前单元格的行的索引
DataGridView1.CurrentRow.Index
来源:oschina
链接:https://my.oschina.net/8824/blog/3211099