日期:2014-05-17 浏览次数:20753 次
private void empInfo_CellContentClick(object sender, DataGridViewCellEventArgs e)
{
if (this.empInfo.CurrentRow.Cells["E_delete"].Selected == true)
{
if (this.empInfo.CurrentRow.Cells["E_delete"].FormattedValue.ToString() == "False")
{
this.empInfo.CurrentRow.Cells["E_delete"].Value = true;
}
else
{
this.empInfo.CurrentRow.Cells["E_delete"].Value = false;
}
}
}