DeliveredToSiteWidget.xaml.cs 1.1 KB

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