8

我正在创建一个生成条形码然后打印运输标签的程序。

我有一个允许用户将电子表格上传到数据网格视图的功能。列名称之一是“跟踪号”。

我希望能够遍历每个具有跟踪号的单元格,然后将条形码生成到名为“条形码”的列中的新单元格中。

我知道有一个循环功能,但我以前从未使用过它。

生成条形码的代码如下,它调用了两个类:

 Image barc = Rendering.MakeBarcodeImage(txtTrack.Text, int.Parse(txtWidth.Text), true);
 pictBarcode.Image = barc;

任何帮助将非常感激。我很乐意回答任何其他问题。

4

2 回答 2

22

要遍历每个单元格,您可以使用 foreach 循环

foreach(DataGridViewRow row in yourDataGridView.Rows)
{
    foreach(DataGridViewCell cell in row.Cells)
    {
        //do operations with cell
    }
}
于 2014-07-16T18:19:46.643 回答
2

您可以循环DataGridView使用以下内容:

foreach (DataGridViewRow row in dgvNameOfYourGrid.Rows)
{
    if (row["Tracking Number"].ToString != "")
    {
        string trackingNumber = row.Cells["Tracking Number"].ToString();

        // do stuff with the tracking number
    }
}

但是要在另一个单元格中显示条形码,您需要将其转换为 a DataGridViewImageCell(或者最好将整个列转换为 a DataGridViewImageColumn)。

于 2012-12-09T20:11:40.713 回答