Add option to reorder ProductsGrid columns

This commit is contained in:
Michael Bucari-Tovo 2022-05-09 13:21:10 -06:00
parent aecc54401d
commit 9fe95bbddc
4 changed files with 39 additions and 15 deletions

View file

@ -187,6 +187,13 @@ namespace LibationFileManager
set => persistentDictionary.SetNonString(nameof(HiddenGridColumns), value);
}
[Description("A DisplayIndex list of columns in ProductsGrid")]
public int[] GridColumnsDisplayIndices
{
get => persistentDictionary.GetNonString<int[]>(nameof(GridColumnsDisplayIndices));
set => persistentDictionary.SetNonString(nameof(GridColumnsDisplayIndices), value);
}
public enum BadBookAction
{
[Description("Ask each time what action to take.")]