string sql = string.Format("SELECT sf FROM xz_Pub_t_Division");
ds = new DataSet();
sda = new SqlDataAdapter(sql, dbh.conn);
sda.Fill(ds, "table");
DataTable dt = ds.Tables[0];
int rows = dt.Rows.Count;
int col = 0;//判断的列
for (int i = 0; i < rows; i++)
{
//遍历每一行每一列
if (dt.Rows[i][col].ToString().Equals("2"))
{
this.dataGridView1.Rows[i].Cells[col].Value = true;
}
}判断完成后对改列的checkbox选中
C#读取从数据库读取数据判断每一行每一列
最新推荐文章于 2023-04-22 16:36:28 发布