DeliveryWarehouseOrderView.xaml.cs 532 B

12345678910111213141516171819202122
  1. using System.Windows;
  2. using System.Windows.Controls;
  3. using System.Windows.Input;
  4. namespace Muchinfo.MTPClient.Delivery.Views
  5. {
  6. /// <summary>
  7. /// Description for DeliveryWarehouseOrderView.
  8. /// </summary>
  9. public partial class DeliveryWarehouseOrderView : UserControl
  10. {
  11. /// <summary>
  12. /// Initializes a new instance of the DeliveryWarehouseOrderView class.
  13. /// </summary>
  14. public DeliveryWarehouseOrderView()
  15. {
  16. InitializeComponent();
  17. }
  18. }
  19. }