ConsignmentsWidget.xaml.cs 844 B

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