我有一个datagridview用数据库中的数据填充。第一列是一个复选框列(从数据库中检索到的该列的数据为BIT类型),我希望用户仅对其进行检查。如果用户选择另一个,则必须取消选中第一个。
我看过很多代码,但是都没有用。
我能做什么?
是带有SQL SERVER的Winforms C#应用程序。
最佳答案
private void dataGridView_CellValueChanged(object sender, DataGridViewCellEventArgs e)
{
// Whatever index is your checkbox column
var columnIndex = 0;
if (e.ColumnIndex == columnIndex)
{
// If the user checked this box, then uncheck all the other rows
var isChecked = (bool)dataGridView.Rows[e.RowIndex].Cells[e.ColumnIndex].Value;
if (isChecked)
{
foreach (DataGridViewRow row in dataGridView.Rows)
{
if (row.Index != e.RowIndex)
{
row.Cells[columnIndex].Value = !isChecked;
}
}
}
}
}