BindingList<T>.SortPropertyCore 属性

定义

如果在派生类中实现了排序,则获取用于对列表排序的属性说明符;否则返回 null

protected:
 virtual property System::ComponentModel::PropertyDescriptor ^ SortPropertyCore { System::ComponentModel::PropertyDescriptor ^ get(); };
protected virtual System.ComponentModel.PropertyDescriptor SortPropertyCore { get; }
protected virtual System.ComponentModel.PropertyDescriptor? SortPropertyCore { get; }
member this.SortPropertyCore : System.ComponentModel.PropertyDescriptor
Protected Overridable ReadOnly Property SortPropertyCore As PropertyDescriptor

属性值

用于对列表排序的 PropertyDescriptor

注解

SortPropertyCore默认返回 ,nullBindingList<T>因为 类不提供排序的基本实现。 若要启用排序,请从 BindingList<T> 和 派生类:

适用于