BindingList<T>.ApplySortCore 方法

定义

如果已在派生类中重写,则对项进行排序;否则将引发 NotSupportedException

protected:
 virtual void ApplySortCore(System::ComponentModel::PropertyDescriptor ^ prop, System::ComponentModel::ListSortDirection direction);
protected virtual void ApplySortCore (System.ComponentModel.PropertyDescriptor prop, System.ComponentModel.ListSortDirection direction);
abstract member ApplySortCore : System.ComponentModel.PropertyDescriptor * System.ComponentModel.ListSortDirection -> unit
override this.ApplySortCore : System.ComponentModel.PropertyDescriptor * System.ComponentModel.ListSortDirection -> unit
Protected Overridable Sub ApplySortCore (prop As PropertyDescriptor, direction As ListSortDirection)

参数

prop
PropertyDescriptor

指定要用于排序的属性的 PropertyDescriptor

direction
ListSortDirection

ListSortDirection 值之一。

例外

方法未在派生类中重写。

注解

BindingList<T> 不提供排序的基本实现,因此 ApplySortCore 默认始终引发 NotSupportedException 。 若要启用排序,请从 BindingList<T> 派生并执行以下任务:

此外,你可能想要实现补充 SortDirectionCoreSortPropertyCore 排序属性。

适用于