FactoryAllocationWidget.xaml.cs 1.2 KB

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