DataGridViewCheckBox的使用技巧
时间:2010-09-21 来源:yanghongkang
最近在项目中使用了 DataGridViewCheckBox,现就使用过程中一些问题,总结如下:
1. DataGridView的CellContentClick和CellContentDoubleClick事件,单元格中的内容被单击/双击时发生
在DataGridView中添加一DataGridViewCheckBox列,设置TrueValue属性为true,FalseValue属性为false
代码
private void dataGridView2_CellContentClick(object sender, DataGridViewCellEventArgs e)
{
//防止用户单击标题行,引发异常
if (e.RowIndex > -1)
{
DataGridViewCheckBoxCell checkCellEdit = (DataGridViewCheckBoxCell)dataGridView1.Rows[e.RowIndex].Cells["chkEdit"];
//flag表示用户是否选中
Boolean flag = Convert.ToBoolean(checkCellEdit.EditedFormattedValue);
}
}
相关阅读 更多 +