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