Add option to reorder ProductsGrid columns
This commit is contained in:
parent
aecc54401d
commit
9fe95bbddc
4 changed files with 39 additions and 15 deletions
|
|
@ -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.")]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue