0

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

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

在窗口形式

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

此列是一个组合框

4

2 回答 2

1

你可以使用这个代码

    DataGridViewSelectedCellCollection DGV = this.dataGridView1.SelectedCells;
    for (int i = 0; i <= DGV.Count - 1; i++)
    {
        MessageBox.Show(DGV [i].Value.ToString());
    }
于 2013-11-06T08:09:08.587 回答
-1
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');

}

}

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

于 2013-05-14T08:47:10.750 回答