RackListWidget.xaml.cs 805 B

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