在c#window窗体的datagridview中逐个添加多个项目

时间:2015-09-30 08:28:13

标签: c# datagridview rows

private void btnSave1_Click(object sender, EventArgs e)
{
   foreach (DataGridViewRow dgvr in ProductAddGridView.Rows)
    {
        dgvr.Cells[0].Value = productIDTextBox.Text;
        dgvr.Cells[1].Value = productTypeIDComboBox.Text;
        dgvr.Cells[2].Value = companyIDComboBox.Text;
        dgvr.Cells[3].Value = productPurchaseRateTextBox.Text;
        dgvr.Cells[4].Value = productQtyTextBox.Text;
        dgvr.Cells[5].Value = productDescriptionRichTextBox.Text;
        dgvr.Cells[6].Value = Convert.ToString(Convert.ToUInt32(productQtyTextBox.Text.Trim()) * Convert.ToDecimal(productPurchaseRateTextBox.Text));
     }
}

我尝试在将数据保存到数据库之前在datagridview中逐个添加多个产品。但是每当我第二次在datagridview中添加一行时,第一行就会被第二行替换 - 它只适用于单行添加。

1 个答案:

答案 0 :(得分:0)

我并不完全知道你在寻找什么,但如果你想在你的数据网格视图中添加多行,你需要创建一个数据行然后你可以在datagrid中添加该行。 您可以参考此Link