C#中的listView有复选框的,要如何才能实现单选
- 你的回答被采纳后将获得:
- 系统奖励15(财富值+成长值)+难题奖励10(财富值+成长值)+提问者悬赏50(财富值+成长值)
展开全部
//使用CellContentClick事件
private void dataGridView1_CellContentClick(object sender, DataGridViewCellEventArgs e)
{
//判断是否是第一列
if (e.ColumnIndex == 0)
{
//遍历数据行
for (int i = 0; i < dataGridView1.Rows.Count; i++)
{
//如果是当前选中的行,设置其为选中状态,否则取反
if (i == e.RowIndex)
{
dataGridView1.Rows[i].Cells[0].Value = true;
}
else
{
dataGridView1.Rows[i].Cells[0].Value = false;
}
}
}
//因为知道选中行的e.RowIndex和列的e.ColumnIndex,所以获取数据就很容易了,不在赘述;
}
private void dataGridView1_CellContentClick(object sender, DataGridViewCellEventArgs e)
{
//判断是否是第一列
if (e.ColumnIndex == 0)
{
//遍历数据行
for (int i = 0; i < dataGridView1.Rows.Count; i++)
{
//如果是当前选中的行,设置其为选中状态,否则取反
if (i == e.RowIndex)
{
dataGridView1.Rows[i].Cells[0].Value = true;
}
else
{
dataGridView1.Rows[i].Cells[0].Value = false;
}
}
}
//因为知道选中行的e.RowIndex和列的e.ColumnIndex,所以获取数据就很容易了,不在赘述;
}
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询