1234567891011121314151617181920212223242526272829303132 |
- using InABox.Configuration;
- using InABox.DynamicGrid;
- using System;
- namespace PRSDesktop;
- public class StockSummaryProperties : IUserConfigurationSettings, IDashboardProperties
- {
- public Guid[] Jobs { get; set; } = Array.Empty<Guid>();
- public DynamicGridSelectedFilterSettings JobFilter { get; set; } = new();
- public Guid[] Suppliers { get; set; } = Array.Empty<Guid>();
- public DynamicGridSelectedFilterSettings SupplierFilter { get; set; } = new();
- public Guid[] ProductGroups { get; set; } = Array.Empty<Guid>();
- public DynamicGridSelectedFilterSettings ProductGroupFilter { get; set; } = new();
- public DynamicSplitPanelSettings SplitPanelSettings { get; set; } = new();
-
- public StockSummaryProperties()
- {
- SplitPanelSettings = new DynamicSplitPanelSettings()
- {
- View = DynamicSplitPanelView.Combined,
- AnchorWidth = 350,
- DetailHeight = 500
- };
- }
- }
|