DeliveredToSiteWidget.xaml.cs 1.1 KB

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