如何从选定的单元格中获取值DataGridView C#?

时间:2013-05-14 08:38:58

标签: c# datagridview

如何从选定的单元格DataGridView C#中获取值? 不是一个

我需要很多,我选择在db中保存的所有内容

在Windows窗体中

我想检查第一列中的每个单元格,然后获取其值“id”

此列是一个组合框

2 个答案:

答案 0 :(得分:1)

您可以使用此代码

    DataGridViewSelectedCellCollection DGV = this.dataGridView1.SelectedCells;
    for (int i = 0; i <= DGV.Count - 1; i++)
    {
        MessageBox.Show(DGV [i].Value.ToString());
    }

答案 1 :(得分:-1)

DataGridViewSelectedRowCollection t = this.theDataGridView.SelectedRows;

object theValue = this.theDataGridView.Rows[t[0].Index].Cells[index].Value;

循环Datagridview     foreach(this.dataGridView1.Rows中的DataGridViewRow行)     {
    foreach(row.Cells中的DataGridViewCell单元格)     {        标签lbl1 = new lable();

   lbl1=(label) cell.findcontrol('lbl');

}

}

找到所选行的rowindex并找到控件,您将获得所有选定的行。