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