Add option for user to hide columns in ProductsGrid
This commit is contained in:
parent
15b6b673d7
commit
aecc54401d
6 changed files with 441 additions and 369 deletions
|
|
@ -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
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue