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