WinForm程序用使用List对象绑定DataGridView数据源
Posted szsunny
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了WinForm程序用使用List对象绑定DataGridView数据源相关的知识,希望对你有一定的参考价值。
List<URLListObject> rltList = new List<URLListObject>(); rltList = this.Analysishtml(); dataGridView1.DataSource = new BindingList<URLListObject>(rltList); //修改数据并刷新 foreach (URLListObject per_o in rltList) { per_o.finalUrl = BaseObjects.GetTheRedirectUrl(per_o.url); } this.dataGridView1.Refresh();
以上是关于WinForm程序用使用List对象绑定DataGridView数据源的主要内容,如果未能解决你的问题,请参考以下文章
winform datagridview 绑定 list .c#