DataGridView控件中CheckBox列的使用 实现DataGridView控件中CheckBox列的使用实例
人气:0想了解实现DataGridView控件中CheckBox列的使用实例的相关内容吗,在本文为您仔细讲解DataGridView控件中CheckBox列的使用的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:DataGridView控件,CheckBox,下面大家一起来学习吧。
复制代码 代码如下:
/// <summary>
/// 实现DataGridView控件中CheckBox列的使用
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void dgvTradList_CellContentClick(object sender, DataGridViewCellEventArgs e)
{
if (e.ColumnIndex == 0 && e.RowIndex != -1)
{
if ((bool)dgvTradList.Rows[e.RowIndex].Cells[0].EditedFormattedValue == true)
{
dgvTradList.Rows[e.RowIndex].Cells[0].Value = false;
}
else
{
dgvTradList.Rows[e.RowIndex].Cells[0].Value = true;
}
}
加载全部内容