FactoryAllocationWidget.xaml.cs 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. using PRSDesktop.WidgetGroups;
  2. using System.Windows.Controls;
  3. using InABox.Configuration;
  4. namespace PRSDesktop
  5. {
  6. public class FactoryAllocationDashboardProperties : UserConfigurationSettings, IDashboardProperties { }
  7. public class FactoryAllocationDashboardElement : DashboardElement<FactoryAllocationWidget, Manufacturing, FactoryAllocationDashboardProperties> { }
  8. /// <summary>
  9. /// Interaction logic for FactoryAllocationWidget.xaml
  10. /// </summary>
  11. public partial class FactoryAllocationWidget : UserControl, IDashboardWidget<Manufacturing, FactoryAllocationDashboardProperties>
  12. {
  13. public FactoryAllocationWidget()
  14. {
  15. InitializeComponent();
  16. }
  17. public FactoryAllocationDashboardProperties Properties { get; set; }
  18. public event LoadSettings<FactoryAllocationDashboardProperties>? LoadSettings;
  19. public event SaveSettings<FactoryAllocationDashboardProperties>? SaveSettings;
  20. public void Refresh()
  21. {
  22. }
  23. public void Setup()
  24. {
  25. }
  26. public void Shutdown()
  27. {
  28. }
  29. }
  30. }