C# DataGridView绑定数据源
Posted Ficow Shen
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C# DataGridView绑定数据源相关的知识,希望对你有一定的参考价值。
第一种: DataSet ds=new DataSet (); this.dataGridView1.DataSource=ds.Table[0]; 第二种: DataTable dt=new DataTable(); this.dataGridView1.DataSource=dt; 第三种: DataSet ds=new DataSet (); this.dataGridView1.DataSource = ds.Tables["表名"]; 第四种: DataSet ds=new DataSet (); this.dataGridView1.DataSource = ds; this.dataGridView1.DataMember = "表名"; 第五种: ArrayList Al = new ArrayList(); this.dataGridView1.DataSource = Al; 第六种: Dictionary<string, string> dic = new Dictionary<string, string>(); this.dataGridView1.DataSource = dic; 第七种: DataView dv = new DataView(); this.dataGridView1.DataSource = dv; 第八种: this.dataGridVi.DataSource = new BindingList<Object>(List<Object>);
以上是关于C# DataGridView绑定数据源的主要内容,如果未能解决你的问题,请参考以下文章
C# winform中 界面加载时datagridview绑定了数据源(datatable),修改datagridview的内容后,如何更新数
如何用c#对datagridview刷新, 是否重新绑定一下, 怎样重新绑定。
C#中dategridview数据源能否与Dictionary绑定
C#中datagridview如何绑定ArrayList集合?