Update GridEntryBindingList to behave move like Chardonnay

This commit is contained in:
Mbucari 2023-04-10 14:10:50 -06:00
parent 6110b08d16
commit 6800986f25
3 changed files with 120 additions and 100 deletions

View file

@ -0,0 +1,12 @@
using LibationUiBase.GridView;
using System.ComponentModel;
namespace LibationWinForms.GridView
{
internal class RowComparer : RowComparerBase
{
public ListSortDirection? SortOrder { get; set; }
public override string PropertyName { get; set; }
protected override ListSortDirection? GetSortOrder() => SortOrder;
}
}