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中添加一行时,第一行就会被第二行替换 - 它只适用于单行添加。