2017-12-12Winform----Datagirdview使用
Posted 疯丶无度
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了2017-12-12Winform----Datagirdview使用相关的知识,希望对你有一定的参考价值。
1、数据绑定
DataGirdView.DataSource = list集合
2、复选框
获取复选框选中状态
for (int i = 0; i < dataGridView1.RowCount; i++)
{
if (dataGridView1.Rows[i].Cells[0].EditedFormattedValue.ToString() == "True")
{
MessageBox.Show(dataGridView1.Rows[i].Cells[1].EditedFormattedValue.ToString());
new UsersData ().Deleteuser(dataGridView1.Rows[i].Cells[1].EditedFormattedValue.ToString());
}
}
以上是关于2017-12-12Winform----Datagirdview使用的主要内容,如果未能解决你的问题,请参考以下文章