如何从选定的单元格中获取值
本文关键字:单元格 获取 | 更新日期: 2023-09-27 18:13:40
如何从选定的单元格获取值DataGridView c# ?没有一个
我需要很多,所有我选择保存在db
Windows格式我想检查每个单元格在第一列,然后得到它的值"id"
this Column是一个组合框
可以使用以下代码
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;
循环Datagridviewforeach (DataGridViewRow在this.dataGridView1.Rows中的行){
foreach (DataGridViewCell cell中的row.Cells){Label lbl1=new Label ();
lbl1=(label) cell.findcontrol('lbl');
}
}
查找所选行的rowindex并查找控件,您将获得所有选定的行。