| 1234567891011121314151617181920212223242526 |
- using Muchinfo.MTPClient.Data.Model.Delivery;
- using Muchinfo.MTPClient.Delivery.ViewModels;
- using System.Windows;
- namespace Muchinfo.MTPClient.Delivery.Views
- {
- /// <summary>
- /// Description for RecieveInfoView.
- /// </summary>
- public partial class RecieveInfoView : Window
- {
- /// <summary>
- /// Initializes a new instance of the RecieveInfoView class.
- /// </summary>
- public RecieveInfoView(DeliveryWarehouse model)
- {
- InitializeComponent();
- this.DataContext = new RecieveInfoViewModel(model);
- }
- private void drag_MouseLeftButtonDown(object sender, System.Windows.Input.MouseButtonEventArgs e)
- {
- this.DragMove();
- }
- }
- }
|