12345678910111213141516171819202122232425262728293031323334 |
- using PRSDesktop.WidgetGroups;
- using System.Windows.Controls;
- namespace PRSDesktop
- {
- public class FactoryAllocationDashboardProperties : 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 void Refresh()
- {
- }
- public void Setup()
- {
- }
- public void Shutdown()
- {
- }
- }
- }
|