BindingList<T>.SupportsSortingCore 属性

定义

获取一个值,该值指示列表是否支持排序。

protected:
 virtual property bool SupportsSortingCore { bool get(); };
protected virtual bool SupportsSortingCore { get; }
member this.SupportsSortingCore : bool
Protected Overridable ReadOnly Property SupportsSortingCore As Boolean

属性值

如果列表支持排序,则为 true;否则为 false。 默认值为 false

注解

属性 SupportsSortingCore 指示 是否 BindingList<T> 支持使用 ApplySortCore 方法进行排序。

BindingList<T> 不提供排序的基本实现,因此 SupportsSortingCore 默认情况下始终返回 false 。 有关实现排序的详细信息,请参阅 ApplySortCore 方法。

适用于