123456789101112131415161718192021222324252627282930313233343536373839 |
- using PRSDesktop.WidgetGroups;
- using System.Windows.Controls;
- using InABox.Configuration;
- namespace PRSDesktop
- {
- public class DeliveredToSiteDashboardProperties : IUserConfigurationSettings, IDashboardProperties { }
- public class DeliveredToSiteDashboardElement : DashboardElement<DeliveredToSiteWidget, Logistics, DeliveredToSiteDashboardProperties> { }
- /// <summary>
- /// Interaction logic for DeliveredToSiteWidget.xaml
- /// </summary>
- public partial class DeliveredToSiteWidget : UserControl, IDashboardWidget<Logistics, DeliveredToSiteDashboardProperties>
- {
- public DeliveredToSiteWidget()
- {
- InitializeComponent();
- }
- public DeliveredToSiteDashboardProperties Properties { get; set; }
-
- public event LoadSettings<DeliveredToSiteDashboardProperties>? LoadSettings;
-
- public event SaveSettings<DeliveredToSiteDashboardProperties>? SaveSettings;
- public void Refresh()
- {
- }
- public void Setup()
- {
- }
- public void Shutdown()
- {
- }
- }
- }
|