datagridview checkbox控件
2009-12-28 10:43:43 来源:WEB开发网核心提示:在Winform中,DataGridView中使用Checkbox控件时//单击单元格事件PRivate void dgvTables_CellClick(object sender, DataGridViewCellEventArgs e){if (e.ColumnIndex == 0){DataGridViewCh
在Winform中,DataGridView中使用Checkbox控件时
//单击单元格事件
PRivate void dgvTables_CellClick(object sender, DataGridViewCellEventArgs e)
{
if (e.ColumnIndex == 0)
{
DataGridViewCheckBoxCell dgvCheck = (DataGridViewCheckBoxCell)dgvTables.Rows[e.RowIndex].Cells[0];
if (dgvCheck.Selected)
{
dgvCheck.Value = !((bool)dgvCheck.FormattedValue);
}
}
}
本文来自CSDN博客,转载请标明出处:http://blog.csdn.net/netgyc/archive/2009/12/28/5089318.aspx
//单击单元格事件
PRivate void dgvTables_CellClick(object sender, DataGridViewCellEventArgs e)
{
if (e.ColumnIndex == 0)
{
DataGridViewCheckBoxCell dgvCheck = (DataGridViewCheckBoxCell)dgvTables.Rows[e.RowIndex].Cells[0];
if (dgvCheck.Selected)
{
dgvCheck.Value = !((bool)dgvCheck.FormattedValue);
}
}
}
本文来自CSDN博客,转载请标明出处:http://blog.csdn.net/netgyc/archive/2009/12/28/5089318.aspx
Tags:datagridview checkbox 控件
编辑录入:爽爽 [复制链接] [打 印]更多精彩
赞助商链接