如何从选定的单元格 DataGridView C# 中获取值?不是一个
我需要很多,我选择保存在数据库中的所有内容
在窗口形式
我想检查第一列中的每个单元格,然后获取其值“id”
此列是一个组合框
如何从选定的单元格 DataGridView C# 中获取值?不是一个
我需要很多,我选择保存在数据库中的所有内容
在窗口形式
我想检查第一列中的每个单元格,然后获取其值“id”
此列是一个组合框
你可以使用这个代码
DataGridViewSelectedCellCollection DGV = this.dataGridView1.SelectedCells;
for (int i = 0; i <= DGV.Count - 1; i++)
{
MessageBox.Show(DGV [i].Value.ToString());
}
DataGridViewSelectedRowCollection t = this.theDataGridView.SelectedRows;
object theValue = this.theDataGridView.Rows[t[0].Index].Cells[index].Value;
循环 Datagridview foreach (DataGridViewRow row in this.dataGridView1.Rows) {
foreach (DataGridViewCell cell in row.Cells) { Label lbl1=new lable();
lbl1=(label) cell.findcontrol('lbl');
}
}
找到所选行的行索引并找到控件,您将获得所有选定的行。