winform datagridviewcheckboxcolumn 设置为只能选中一行,不能多选。
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了winform datagridviewcheckboxcolumn 设置为只能选中一行,不能多选。相关的知识,希望对你有一定的参考价值。
private void dataGridView1_CellContentClick(object sender, DataGridViewCellEventArgs e) this.dataGridView1.Rows[e.RowIndex].Selected = true;
详细代码!!!!
可以用判断来解决,给我代码!
参考技术A
你加了复选框却不要多选!!这需求。。。
试试下面的代码,清掉其它的复选框。。
private void dataGridView1_CellContentClick(object sender, DataGridViewCellEventArgs e)
for (int i = 0; i < dataGridView1.Rows.Count; i++)
if (i != e.RowIndex && dataGridView1.CurrentCell.ColumnIndex == 0)
DataGridViewCheckBoxCell cell = (DataGridViewCheckBoxCell)dataGridView1.Rows[i].Cells[0];
cell.Value = false;
本回答被提问者和网友采纳
参考技术B
设置MuliteSelect 属性为 false 就可以了!!追问没有什么区别啊,还是老样子
追答怎么可能啊,这个属性就是只能选中一行的!!
问题在于你的代码
private void dataGridView1_CellContentClick(object sender, DataGridViewCellEventArgs e)
this.dataGridView1.Rows[e.RowIndex].Selected = true;
这个代码就已经决定了你你的控件永远都是多选的!!
设置好属性后,然后删除你的这段代码
private void dataGridView1_CellContentClick(object sender, DataGridViewCellEventArgs e)
this.dataGridView1.Rows[e.RowIndex].Selected = true;
就可以了!!
控件的选中状态是由控件来决定,你不应该手动去设置他是否选中!!
参考技术C
在datagrid的属性值里面加入 singleSelect
singleSelect boolean 如果为true,则只允许选择一行。
WinForm基础
以上是关于winform datagridviewcheckboxcolumn 设置为只能选中一行,不能多选。的主要内容,如果未能解决你的问题,请参考以下文章
会winform再学wpf简单吗
winform 静态方法 不能使用winform 控件 怎么解决?
什么是winform界面
什么原因导致winform程序崩溃
winform问题 进来看下
WinForm基础