是否可以阻止重复记录,但还可以编辑所选记录?我正在做类似的事情。
Example
当我有大量记录并更新第二个或第三个记录时,每当尝试使用第一个记录的ID时,都会收到警告。效果很好。但是,每当我尝试编辑第一条记录的名称,城市等时,由于没有更改ID,都会弹出重复的ID错误。它会将自己视为重复项。不知道该怎么办。我尝试使用断点,但是没有看到任何有趣的东西。谢谢。
private void btnUpdate_Click(object sender, EventArgs e)
{
if (dgvProfiles.SelectedCells.Count <= 0)
{
MessageBox.Show("No record was selected to update.");
}
else {
for (int row = 0; row < dgvProfiles.Rows.Count; row++)
{
for (int col = 0; col < dgvProfiles.Columns.Count; col++)
{
if (dgvProfiles.Rows[row].Cells[col].Value != null &&
dgvProfiles.Rows[row].Cells[col].Value.Equals(txtEmail.Text.Trim()))
{
MessageBox.Show("Duplicate email was entered.");
return;
}
else if (dgvProfiles.Rows[row].Cells[col].Value != null &&
dgvProfiles.Rows[row].Cells[col].Value.Equals(txtID.Text.Trim()))
{
MessageBox.Show("Duplicate ID was entered.");
return;
}
}
}
DataGridViewRow newDataRow = dgvProfiles.Rows[indexRow];
newDataRow.Cells[0].Value = txtID.Text;
newDataRow.Cells[1].Value = txtName.Text;
newDataRow.Cells[4].Value = txtEmail.Text;
newDataRow.Cells[5].Value = txtCity.Text;
newDataRow.Cells[6].Value = cbxState.Text;
}
}
最佳答案
尝试使用Validation events。
而且,如果将DataGridView绑定到数据集,则更容易遍历数据集中的值以查找重复项。请参见DataSource property。
关于c# - 禁止编辑DataGridView记录,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/39967475/