using Muchinfo.MTPClient.Delivery.ViewModels;
using System.Windows;
using System.Windows.Input;
namespace Muchinfo.MTPClient.Delivery.Views
{
///
/// Description for TakaDeliveryGoodsApplyView.
///
public partial class TakaDeliveryGoodsApplyView : Window
{
///
/// Initializes a new instance of the TakaDeliveryGoodsApplyView class.
///
public TakaDeliveryGoodsApplyView()
{
InitializeComponent();
this.DataContext = new TakaDeliveryGoodsApplyViewModel();
}
public void drag_MouseLeftButtonDown(object sender, MouseButtonEventArgs args)
{
this.DragMove();
}
}
}