码迷,mamicode.com
首页 > Windows程序 > 详细

DataGridView 绑定List<>数据的更新

时间:2015-05-03 18:54:35      阅读:222      评论:0      收藏:0      [点我收藏+]

标签:

使用BindingSource做为中间数据源,使用
bindingSource1.DataSource = productOrderList;
dataGridView1.DataSource = bindingSource1;
 
当增加,修改,删除List数据后,使用bindingSource1.ResetBindings(true);更新列表
如果数据源实例变化则需要重新绑定
bindingSource1.DataSource = productOrderList;
dataGridView1.DataSource = bindingSource1;
 
List的T需要自定义数据类,只有属性才能得到显示.

DataGridView 绑定List<>数据的更新

标签:

原文地址:http://www.cnblogs.com/flyant/p/4474376.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!