BindingList<T>.ApplySortCore 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
파생 클래스에서 재정의되면 항목을 정렬하고, 그렇지 않으면 NotSupportedException을 throw합니다.
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 throw합니다. 정렬을 사용하도록 설정하려면 에서 BindingList<T> 파생하고 다음 작업을 수행합니다.
정렬이 완료되면 이벤트를 발생시키는 정렬을 재정 ApplySortCore 의 ListChanged 하고 구현합니다.
정렬 제거를 재정 RemoveSortCore 의하고 구현합니다.
를 재정 SupportsSortingCore 의하고 로
true
설정합니다SupportsSortingCore.
또한 추가 SortDirectionCore 및 SortPropertyCore 정렬 속성을 구현할 수도 있습니다.
적용 대상
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET