DataGridView一些总结
Posted tiancaige
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了DataGridView一些总结相关的知识,希望对你有一定的参考价值。
如下:
DataTable dt = (DataTable)this.dataGridView1.DataSource; //数据集转化为DataTable dataGridView1.Rows.Count //数量统计 int ccc = dataGridView1.CurrentCell.RowIndex;//当前行下标 string smaterialNoFinish = dataGridView1[0, ccc].Value.ToString();// 第ccc行第一列的值 string[] str = new string[dataGridView1.Rows.Count];
数据集t填充:
string sql = " select ....."; try { SqlConnection Sqlconn = new SqlConnection(connStr); SqlCommand cmd = new SqlCommand(sql, Sqlconn); Sqlconn.Open(); DataSet ds = new DataSet(); SqlDataAdapter da = new SqlDataAdapter(sql, Sqlconn); da.Fill(ds); dataGridView1.DataSource = ds.Tables[0]; Sqlconn.Close(); } catch (Exception ee) { MessageBox.Show(ee.Message, "查找失败", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); }
未完待续...
以上是关于DataGridView一些总结的主要内容,如果未能解决你的问题,请参考以下文章