我的 C# winform 有一个 datagridview,当我单击更新按钮时,我应该输入什么代码来检查是否有任何单元格已被编辑?
我只需要有一个真假。
谢谢。
==================================================== ==========================
我现有的代码:
#region Edit Records
private void InProSysAdministrationEventsUpdateButton_Click(object sender, EventArgs e)
{
if (MessageBox.Show("Please Click Ok to Edit the Events", "Confirmation", MessageBoxButtons.OKCancel) == DialogResult.OK)
{
ManipulateData.UpdateData(connectionString, tblconn, tblscmd, tbldataadaptor, tbldatatable, cmbuilder, "usp_readallevents", readalleventsdataGridView);
}
}
#endregion
我需要执行以下操作:
1)用户点击编辑
2) 系统检查是否有任何单元格被编辑过
3)如果没有编辑单元格,它将 messagebox.show("No Changes Done.")
4)否则,它将更新数据库。