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