场景
Winform中给DataGridView添加多选框列并获取选中行的内容:
Winform中给DataGridView添加多选框列并获取选中行的内容_BADAO_LIUMANG_QIZHI的博客-CSDN博客
在上面的基础上,实现了添加多选框并获取选中行的内容。
如果要将List<string>作为dataGridView的数据源并实现多选和全选以及获取选择的内容怎么实现。
注:
博客:
BADAO_LIUMANG_QIZHI的博客_CSDN博客
关注公众号
霸道的程序猿
获取编程相关电子书、教程推送与免费下载。
实现
1、将List<string>赋值给dataGridView的数据源
this.dataGridView_show_tables_name.DataSource = this.tableNameList.Select(x => new { Value = x }).ToList();
其中tableNameList就是List<string>
2、实现多选框
DataGridViewColumn checkCol = new DataGridViewCheckBoxColumn();
checkCol.Name = "选择";
this.dataGridView_show_tables_name.Columns.Add(checkCol);
3、实现全选
首先添加一个checkbox作为全选选择框
然后实现其changed事件
private void checkBox1_CheckedChanged(object sender, EventArgs e)
{
if (this.checkBox_select_all.Checked == true)
{
for (int i = 0; i < this.dataGridView_show_tables_name.Rows.Count; i++)
{
this.dataGridView_show_tables_name.Rows[i].Cells["选择"].Value = 1;
}
}
else
{
for (int i = 0; i < this.dataGridView_show_tables_name.Rows.Count; i++)
{
this.dataGridView_show_tables_name.Rows[i].Cells["选择"].Value = 0;
}
}
}
在上面添加checkCol时设置了其Name属性。,所以这里通过Cells[|”选择”]获取到对应列。
4、获取选择的内容
首先声明变量来接收获取的内容
List<string> selectedTableNameList = new List<string>();
然后再需要获取选择内容的地方
this.selectedTableNameList.Clear();
for (int i = 0; i < this.dataGridView_show_tables_name.Rows.Count; i++)
{
if ((bool)this.dataGridView_show_tables_name.Rows[i].Cells["选择"].EditedFormattedValue == true)
{
selectedTableNameList.Add(this.dataGridView_show_tables_name.Rows[i].Cells[1].Value.ToString());
}
}
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/136187.html