DataGridView的DataGridViewCheckBox问题
2020-12-13 02:47
标签:datagridview class blog code tar com datagridview有一列DataGridViewCheckBox,但连续点击的话(1秒点击N次),会导致出错,数据处理不正确,感觉 private void dgv_CellContentClick(object sender,
DataGridViewCellEventArgs e) {}的没处理完,一般处理方法就是再加个doubleclick事件 DataGridView的DataGridViewCheckBox问题,搜素材,soscw.com DataGridView的DataGridViewCheckBox问题 标签:datagridview class blog code tar com 原文地址:http://www.cnblogs.com/JohnnyBao/p/3782082.html
private
void
dgv_CellContentClick(
object
sender, DataGridViewCellEventArgs e)
{
try
{
dgv.Enable =
false
;
........
}
catch
(Exception ex)
{
}
finally
{
dgv.Enable =
true
;
}
}
文章标题:DataGridView的DataGridViewCheckBox问题
文章链接:http://soscw.com/essay/26309.html