WPF CollectionView 의 SortDescriptions 를 이용해 데이터 정렬하기
WPF CollectionView 의 SortDescriptions 를 이용해 데이터 정렬하기 CollectionView 의 SortDescriptions 를 데이터 정렬 기능을 알아봅니다.Person.csusing System.ComponentModel; namespace WpfApp{ public class Person : INotifyPropertyChanged { /// /// 속성변경 이벤트입니다. /// public event PropertyChangedEventHandler PropertyChanged; /// /// 이름입니다. /// string name = ""; ..