Add option for user to hide columns in ProductsGrid

This commit is contained in:
Michael Bucari-Tovo 2022-05-09 12:58:09 -06:00
parent 15b6b673d7
commit aecc54401d
6 changed files with 441 additions and 369 deletions

View file

@ -179,6 +179,13 @@ namespace LibationFileManager
get => persistentDictionary.GetNonString<int>(nameof(LameVBRQuality));
set => persistentDictionary.SetNonString(nameof(LameVBRQuality), value);
}
[Description("A list of GridView data property names whose columns should be hidden in ProductsGrid")]
public string[] HiddenGridColumns
{
get => persistentDictionary.GetNonString<string[]>(nameof(HiddenGridColumns));
set => persistentDictionary.SetNonString(nameof(HiddenGridColumns), value);
}
public enum BadBookAction
{