解决DataGridView绑定List后不能排序的问题

当尝试使用List绑定DataGridView并实现排序功能时,通常遇到困难。文中介绍了如何通过实现System.Collections.Generic.IComparer接口以及创建SortableBindingList类来解决这个问题。通过创建ObjectPropertyCompare类进行比较,并在SortableBindingList类中应用排序,最终实现对DataGridView的排序功能。
摘要由CSDN通过智能技术生成

以前不都是用table直接绑定DataGridView的,没有出现过不能排序的问题,初试List结果发现不管怎么样都不能实现排序的功能,有朋友说 DataGridView每一列都有个Sortable,默认Automatic,改成NotSortable了,结果怎样,还是不行啦。 还有朋友说, 你可以拖一个bindingsource控件. bindingsource.datasource=泛型集合 datagridview.datasource=bindingsource; 我发现也是不行,那要怎么办呢?查一下资料才知道 用泛型会失去DateTable的特性,要实现System.Collections.Generic.IComparer 才能实现排序 没有办法只能实现 一把了 看一下下面的代码吧, 基本 是这样的 代码 using System; using System.ComponentModel; using System.Collections.Generic; using System.Reflection; namespace BaseFunction { class ObjectPropertyCompare : System.Collections.Generic.IComparer { private PropertyDescriptor property; private ListSortDirection direction; public ObjectPropertyCompare(PropertyDescriptor property, ListSortDirection direction) { this.property = property; this.direction = direction; } #region IComparer /// /// 比较方法 /// /// 相对属性x /// 相对属性y /// public int Compare(T x,

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值