ConsignmentsWidget.xaml.cs 1.0 KB

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