Как определить свойство уровня класса для PropertyDescriptor для сортировки BindingList? - PullRequest
2 голосов
/ 08 февраля 2011

Я переопределил метод ApplySortCore для пользовательского BindingList следующим образом:

public void ApplySort(PropertyDescriptor prop, ListSortDirection direction)
{
    ApplySortCore(prop, direction);
}
protected override void ApplySortCore(PropertyDescriptor prop, ListSortDirection direction)
{
    sortedList = new System.Collections.ArrayList();
    Type interfaceType = prop.PropertyType.GetInterface("IComparable");

    if (interfaceType != null)
    {
        sortPropertyValue = prop;
        sortDirectionValue = direction;

        unsortedList = new System.Collections.ArrayList(this.Count);

        foreach (Object item in this.Items)
        {
            sortedList.Add(prop.GetValue(item));
            unsortedList.Add(item);
        }

        sortedList.Sort();
        isSortedValue = true;

        OnListChanged(new ListChangedEventArgs(ListChangedType.Reset, -1));
    }
}

Как я могу определить PropertyDescriptor уровня класса (свойство класса InstanceName), чтобы вызывать его напрямую так:

_filteredEntityTally.ApplySort( ???? ,ListSortDirection.Ascending);

1 Ответ

2 голосов
/ 08 февраля 2011
...